热门关键字:
jquery > jquery教程 > jquery教程 > CSS 类选择器

CSS 类选择器

430
作者:管理员
发布时间:2020/8/4 11:17:48
评论数:0
转载请自觉注明原文:http://www.jq-school.com/Show.aspx?id=2298

在 CSS 中,类选择器以一个点号显示:

.center {text-align: center}

在上面的例子中,所有拥有 center 类的 HTML 元素均为居中。

在下面的 HTML 代码中,h1 和 p 元素都有 center 类。这意味着两者都将遵守 ".center" 选择器中的规则。

<h1 class="center">

This heading will be center-aligned

</h1>

<p class="center">

This paragraph will also be center-aligned.

</p>

注意:类名的第一个字符不能使用数字!它无法在 Mozilla 或 Firefox 中起作用。





如果您觉得本文的内容对您的学习有所帮助:支付鼓励



关键字:jQuery
友荐云推荐