CSS学习前准备

工具
1、eclipse

2、emmet插件, https://github.com/emmetio/emmet-eclipse#readme
      语法学习网站: http://www.w3cplus.com/tools/emmet-cheat-sheet.html

3、emmet语法参考
3.1、后代:>
3.2、兄弟:+
3.3、上级:^
3.4、分组:{}
3.5、乘法:*
3.6、自增:$
3.7、ID和类属性:#、.
3.8、自定义属性:table[vi="none"]
3.9、文本:a{testss}

4、Action
4.1、html>body>h1{My First Heading}+p{My first paragrahp.}
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>


5、css参考手册
      http://www.w3school.com.cn/cssref/index.asp

你可能感兴趣的:(css)