标签:href span ant line input imp put 相等 12px
<p style="color:red;" font-size:12px;></p>
外联式写法
<link rel="stylesheet " href="地址" type="text/css"/>
<style type="css/stylesheet"> p{ font-size:20px; color:red; } </style>
注意:3个不同书写方式的优先级:行内式>嵌入式>外联式(在多少项目中为了保持代码的整洁,都会用嵌入式。维护性高,影响范围广,当整个网站的站点。)
<span>我</span> <span>是</span> <span>国</span> <span>人</span>
div{width:10px; height:10px; display:block;}
display:inline-block 将元素转化为行内块元素
div{ width:300px; height:20px; display:inline;}
display:block 将元素转化为块元素
a{ display:block; width:20px; height:30px;}
.two{color:green;} .now{color:red;} <p class="noe two"></p>//红色
<style type="text/css"> p{ color:red; !important; //优先级最大,红色 color:#foo; } <style> <p>sssss<p>
标签:href span ant line input imp put 相等 12px
原文地址:http://www.cnblogs.com/wdz1/p/7516655.html