标签:style blog http color ar 使用 strong sp div
a:hover { zoom:1}/*要解决这个问题就必须触发a:hover的layout,例如a:hover { display:inline-block}或者a:hover { zoom:1}等等。*/ a:hover span{color:#F00;} <a href="#">鼠标经过时改变我的<span>颜色</span></a>
IE6/IE7下:块元素(li) inline-block解决方案
<div class="list"> <span>无标题文档无标题文档</span> <span>无标题文档无标题文档</span> <span>无标题文档无标题文档</span> <span>无标题文档无标题文档</span> </div> <ul class="list1"> <li>无标题文档无标题文档</li> <li>无标题文档无标题文档</li> <li>无标题文档无标题文档</li> <li>无标题文档无标题文档</li> <li>无标题文档无标题文档</li> </ul> .list{width:350px; border:1px solid #ccc;} .list span{display:inline-block;width:150px; margin-left:20px;} .list1{width:500px;border:1px solid #CCC; margin-top:20px;} .list1 li{display:inline-block; width:150px; }
标签:style blog http color ar 使用 strong sp div
原文地址:http://www.cnblogs.com/eaysun/p/4052109.html