我正在尝试向提交按钮的值添加一些 CSS。唯一的问题是它不会听某些属性。更改字体的大小可以正常工作,但我正在尝试这样做,但font-weight: 300;
它不会更改文本。有什么办法可以让它工作吗?
这是html:是的,提交按钮是container
故意的。
<section id="contact">
<div class="container">
<form id="contact-form" action="contact.php" method="post" class="contact">
<input id="sendername" type="text" name="name" placeholder="Your Name" />
<input id="senderemail" type="email" name="email" placeholder="Email Address" />
<textarea id="sendermessage" name="message" placeholder="Message"></textarea>
</div>
<input id="submit" type="submit" value="Send." />
</form>
</section>
这是css:它使用SASS编译。
#contact {
min-height: 100px;
background-color: $bgDark;
@extend .master-padding;
#contact-form {
margin: 0;
padding: 0;
}
#submit {
display: block;
width: 100%;
font-size: 40px;
border: none;
color: $colorLight;
font-weight: 300;
@extend .action;
&:hover {
color: $colorDark;
}
}
}