目前我正在使用以下css来处理我的所有文字。然而,它正在我的博客上改变我的表单文本(我不希望它这样做。)我如何为这个博客侧边栏表单设置一个新的样式。我只是想把文本集中在一起,然后把它变成粗体等等。
http://jeffreydowellphotography.com/blog/
p {
font-family: "HelveticaNeue-Regular", "Helvetica Neue Regular", ``"Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 16px;
font-weight: 300;
max-width: 550px;
color: #4d4d4d;
text-align: left;
line-height: 175%;
letter-spacing: 1px;
word-spacing: 0px;
margin-top: 20px;
}
答案 0 :(得分:0)
给表单一个类,或者如果它是唯一的表单,我认为你可以放置表单。从那里,我相信你可以给出否定伪类:
:not(form){text-align:center; font-weight:bold; /*any other css you would like to enter. make sure you copy the entire line. this is a comment so you can delete it.*/}
或者您可能会影响表单的输入:
form input{ text-align:center; font-weight:bold; }
我希望他们能够工作。
答案 1 :(得分:0)
你应该为博客做这样的事情。 所以你可以覆盖基本风格。
p {
font-family: "HelveticaNeue-Regular", "Helvetica Neue Regular", ``"Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 16px;
font-weight: 300;
max-width: 550px;
color: #4d4d4d;
text-align: left;
line-height: 175%;
letter-spacing: 1px;
word-spacing: 0px;
margin-top: 20px;
}
p.blog {text-align: right/*and other code*/}
<p class="blog"> This paragraph will be right-aligned. </p>/*you should give all the p in your blog the blog element*/
祝你好运。