码迷,mamicode.com
首页 > Web开发 > 详细

css笔记 2

时间:2018-02-16 22:33:07      阅读:255      评论:0      收藏:0      [点我收藏+]

标签:灰色   fan   log   指定   第一个字符   选择   单元   ext   div   

定义一个类选择器
.center {text-align: center}

h1 有 center 类。这意味将遵守 ".center" 选择器中的规则。
<h1 class="center">
This heading will be center-aligned
</h1>

类名的第一个字符不能使用数字!

派生选择器
td.fancy {
color: #f60;
background: #666;
}
<td class="fancy">

可以将类 fancy 分配给任何一个表格元素任意多的次数。
那些以 fancy 标注的单元格都会是带有灰色背景的橙色。那些没有被分配名为 fancy 的类的单元格不会受这条规则的影响。
这个效果被限制于被标注为 fancy 的表格单元(即使用 td 元素来选择 fancy 类)。

属性选择器

[attribute=value]
用于选取带有指定属性和值的元素。
[attribute~=value]
用于选取属性值中包含指定词汇的元素。

css笔记 2

标签:灰色   fan   log   指定   第一个字符   选择   单元   ext   div   

原文地址:https://www.cnblogs.com/wander-clouds/p/8450619.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!