网页前端后台技巧(CSS+HTML)

Day.01.02 css之类选择器的简单案例

2017-01-02  本文已影响6人  挂树上的骷髅怪
<!DOCTYPE html>
<html>
 <head>
 <meta  charset="utf-8">
  <title> 类选择器 </title>
    <style type="text/css">
    /*基本语法
    .类选择器名称{
        css属性:属性值;
    }
    补充:选择器名称命名规范:小写字母 .xxx-yyy{}
    */
        .span-news{
            font-weight:bold;/*粗体*/
            background-color:pink;
            color:black;
        }
    </style>
 </head>
 <body>
    <span class="span-news">标题一</span>
    <span class="span-news">标题一</span>
    <span class="span-news">标题一</span>
    <span class="span-news">标题一</span>
    <span class="span-news">标题一</span>
 </body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读