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

css 层叠样式表

时间:2016-09-26 14:25:11      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

css选择器

派生选择器

根据其元素在其上下文关系来定义样式

 

id选择器

<html>
  <head>
    <meta charset="utf-8" />
    <link href="10.css" type="text/css" rel="stylesheet" />
    <meta name="generator"
    content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" />
    <title></title>
  </head>
  <body>
    <p>
      <strong>p标签hello</strong>
    </p>
    <ul>
      <li>
        <!--如何给li标签单独加样式,派生 li strong{属性: 属性值}-->
        <strong>li标签hello</strong>
      </li>
    </ul>
  </body>
</html>
li strong {
    color:red;
}
strong{
    color:blue;
}

 

技术分享

 

css 层叠样式表

标签:

原文地址:http://www.cnblogs.com/Yimi/p/5908835.html

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