首页 > 代码库 > css 选择器
css 选择器
派生选择器: 只改变li 下的strong
li strong { font-style: italic; font-weight: normal; }
id选择器: id 可被用作派生选择器:
div#sidebar { border: 1px dotted #000; padding: 10px; }#sidebar p { font-style: italic; text-align: right; margin-top: 0.5em; }#sidebar h2 { font-size: 1em; font-weight: normal; font-style: italic; margin: 0; line-height: 1.5; text-align: right; }
类选择器:和 id 一样,class 也可被用作派生选择器:
.center {text-align: center}.fancy td { color: #f60; background: #666; }
td.fancy { color: #f60; background: #666; }<td class="fancy">
属性选择器:
[title]{color:red }适用于所有包含title的[title="w3c"]{color:red }适用于title="w3c" [title~="w3c"] {color:red}适用于空格连接的值,如: title=“w3c hehe” tile="hh w3c" [title |="w3c"] {color:red}适用于以“-”连接的值,如:title="w3c-hhhh" title="w3c"
外部样式表
<head><link rel="stylesheet" type="text/css" href="mystyle.css" /></head>
内部样式表
<head><style type="text/css"> hr {color: sienna;} p {margin-left: 20px;} body {background-image: url("images/back40.gif");}</style></head>
内联样式
<p style="color: sienna; margin-left: 20px">This is a paragraph</p>
多重样式
http://www.w3school.com.cn/css/css_howto.asp
css 选择器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。