天猫首页实践项目http://how2j.cn/frontshowLandingByKnowledge?knowledge.id=854&p=2286
css样式
-
外部样式:<link rel="stylesheet" type="text/css" href="./xx/css.css" />
-
内部样式:在<head>标签里面,<style type="text/css"> p {color:red;font-size:12px;} </style>
-
内联样式:<p style="color:red; background:blue;font-size:12px;">了不起的盖茨比</p>
内联式适用情况:局部特殊化
嵌入式适用情况:统一标签样式格式
外联式适用情况:方便代码重用和管理
内联>嵌入>外联
网友评论