css (cascading style sheet)层叠样式表
1.行间样式
<div style="width:100px;height:100px;"></div>
2.页面级css(在head标签里面写)
<style type="text/css"> ?????div { ??????????????width:100px; ??????????????height:100px; ????????}</style>
3.外部css文件(在head标签里面写)
<link rel="stylesheet" type="text/css" herf="lesson.css">
引入css
原文地址:http://www.cnblogs.com/sunshinehu/p/7450741.html