码迷,mamicode.com
首页 > Web开发 > 详细

CSS超过指定的宽度加省略号

时间:2014-07-12 16:11:21      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   width   

/*table-layout:fixed 会使表格均等分*/
#TreeView1 table
        {
            width:290px;
            table-layout: fixed;
        }
#TreeView1 td:first-child {
    width:8%;
}

/*+选择下一个兄弟节点 注意+前后都有空格*/
#TreeView1 td:first-child + td {
    width:6%;
}

/*[attribute]含有某个属性的元素*/
#TreeView1 td[class] {
    width:80%;
    text-align:left;
}

/*下面的才是重点*/
      #TreeView1  td.node
        {

            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

table-layout:fixed会使表格均等分,不过不用紧张,可以使用选择器来调每一列的高度

http://www.w3school.com.cn/cssref/css_selectors.asp

特别对于IE8尽可能使用css2的选择器去控制

CSS超过指定的宽度加省略号,布布扣,bubuko.com

CSS超过指定的宽度加省略号

标签:style   blog   http   color   使用   width   

原文地址:http://www.cnblogs.com/lzhp/p/3838304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!