如何定位特定值

时间:2017-11-01 13:44:14

标签: css

我正在开发一个网站,其中有时使用内联样式和其他内容文本应用于外部样式表。

<p style="text-align: center;">Centered Text</p>
<p class="center">Centered Text</p>

.center {text-align: center;}

是否有一个CSS选择器可以定位所有居中的文本,无论它们居中的方法是什么?

请注意,问题不在于这种定心方法是否正确完成。

2 个答案:

答案 0 :(得分:3)

您可以使用以下行选择它:

.center, p[style="text-align: center;"] { color:red; }

但使用

非常难看

答案 1 :(得分:0)

为什么不将它们全部定义为类并根据需要添加。 在css中你可以定义

.myCenteringClass {
  text-align: center;
}

然后在HTML中的任何地方做

<div class="myCenteringClass">asdfadsf</div>
<p class="myCenteringClass">dasfdsaf</p>