首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

css惯用技巧

2012-10-30 
css常用技巧1.在firefox中span默认是不支持width属性的,有的ie版本也不支持。但不同的浏览器都有解决办法,

css常用技巧

1.在firefox中span默认是不支持width属性的,有的ie版本也不支持。但不同的浏览器都有解决办法,如下

.tabs {    display: -moz-inline-box; /* firefox支持 */    display: inline-block; /* IE中 */    width: 150px;    text-align: right;}
?

2.

热点排行