0

目前我对我的所有文本都使用下面的 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; 
}
4

2 回答 2

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; }

我希望他们工作。

于 2013-08-01T17:49:06.260 回答
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*/

祝你好运。

于 2013-08-01T17:55:25.253 回答