当前位置: 代码迷 >> HTML/CSS >> css惯用技巧
  详细解决方案

css惯用技巧

热度:168   发布时间:2012-10-30 16:13:36.0
css常用技巧

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

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

2.

  相关解决方案