2017届西安思沃大讲堂

CSS学习笔记

2016-12-09  本文已影响7人  qin7zhen

CSS样式表

当读到一个样式表时,浏览器会根据它来格式化 HTML 文档。

<head>
    <link rel="stylesheet" type="text/css" href="mystyle.css" />
</head>
<head>
    <style type="text/css">
      hr {color: sienna;}
    </style>
</head>
<p style="color: sienna; margin-left: 20px">
     This is a paragraph
</p>

CSS语法

selector {declaration1; declaration2; ... declarationN }
selector {property: value}
selector1, selector2 {declaration}

CSS选择器

li strong {
    font-style: italic;
    font-weight: normal;
  }
#red {color:red;}

HTML代码:

<p id="red">这个段落是红色。</p>
.center {text-align: center}

HTML代码:

<h1 class="center">This heading will be center-aligned</h1>

伪元素

selector:pseudo-element {property:value;}

Reference

w3school的CSS教程 http://www.w3school.com.cn/css/index.asp

上一篇下一篇

猜你喜欢

热点阅读