我有一些CSS应用于视图标题和视图列。
这是一个示例
.viewHeaderName {
width:235px;
background-color:rgb(192,192,192);
color:rgb(0,0,0);
font-family:Trebuchet MS,sans-serif;
font-size:10t;
font-weight:bold;
text-align:left;
}
.viewColumnName {
font-family:Trebuchet MS,sans-serif;
font-size:9pt;
}
基本上我试图将列的宽度设置为我想要的。我不希望标题或列中的文本换行。这适用于所有列的分类视图。
但是对于简单的排序视图,标题会从列中的文本向右偏移几个字符。
如果我删除了CSS中的width参数,那么一切都很好但我没有得到我想要的宽度。
答案 0 :(得分:1)
你可以使用这里描述的td / th nowrap属性
http://www.w3schools.com/tags/att_td_nowrap.asp
或
在此处描述的css中使用white-space元素
http://www.w3schools.com/cssref/pr_text_white-space.asp
空白:NOWRAP;