Chapter7 CSS入门

ex:
p{background-color:red; #backgorund color border:1px solid gray;} # boder
This code can modify all the P elements.


《CSS Pocket Reference 》


add in

p{color:maroon;} # font-color


h1{font-family:sans-serif;color:gray;}+
h2{font-family:sans-serif;color:gray;}
=h1,h2{ #selector font-family:sans-serif; #font package color:gray; }


修改整个网站的CSS

  1. 提取A.html文件的规则,保存为A.css
  2. 从A.html创建到达这个文件的链接
  3. 在其他文件重复步骤2
  4. 测试所有文件

PS:

  1. 步骤1中不要复制