摘要: CSS层叠样式表优势:使页面结构和表现分离1.引入方式: 1)行内样式:<h2 style="color:#0F0">Hello World</h2> 2)内部样式:<style type="text/css"> h2{ color:#F00; } </style> 3)外部样式:<link href=“a.css” type=“text/css” rel=“stylesheet”/> 推荐 <style type="text/css"> @import url( 阅读全文
posted @ 2013-05-10 15:27 东泉 阅读(184) 评论(0) 推荐(0)