常用css

一、设置背景图片位置.menubg{background: url(images/con_i_35.gif) no-repeat 5px 3px;padding-left:30px;}

二、在ie6下重影解决

     1.去掉注释

     2.一般重影的父容器都设置了float属性,那么你只需要在父容器后面加<br/>则可以解决掉

     还有其他方法,但我觉得2比较不错

三、不换行

      overflow:hidden; white-space:nowrap; text-overflow:ellipsis;width:100px;

四、强制换行

 .divwrap{white-space:normal;word-break:break-all;width:96%;}

五、让table在div里滚动

<style type="text/css">
        /*表格外部div*/
        .tablecontainer
        {
            width: 100%;
            height: 400px;
            overflow: scroll;
        }
        /*表格样式*/.
        fixedtable
        {
            width: 100%; /*表格宽度需和外部div相等,否则会出现横向滚动条   text-align: left;*/
            border-collapse: collapse;
            table-layout: fixed;
            font-size: 12px;
        }
    </style>

posted on 2010-06-17 14:28  jianshaohui  阅读(133)  评论(1编辑  收藏  举报

导航