您的位置:首页 > Web前端 > CSS

css样式控件td或div文字溢出用....表示

2012-08-29 20:11 183 查看
.p-lable{

font-weight:500;

display:block;

float:left;

word-break:keep-all;

width:310px;

height:20px;

line-height:20px;

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

padding-left:6px;

}

主要是overflow:hidden;text-overflow:ellipsis;white-space:nowrap;

参考:http://www.zhangxinxu.com/study/200909/text-overflow-ellipsis-so-on.html

//设置div滚动条样式

#p-content{

float:left;

width:415px;

height:492px;

overFlow-y:scroll;

scrollbar-face-color: #C8EFF8;

scrollbar-shadow-color: #C8EFF8;

scrollbar-highlight-color: #F3FDFC;

scrollbar-3dlight-color: #2ABFAA;

scrollbar-darkshadow-color: #2ABFAA;

scrollbar-track-color: #F3FDFC;

scrollbar-arrow-color: #F3FDFC;

padding-top:5px;

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: