1

我有一些 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 中的宽度参数,那么一切都很好,但我没有得到我想要的宽度。

4

1 回答 1

1

您可以使用此处描述的 td/th nowrap 属性

http://www.w3schools.com/tags/att_td_nowrap.asp

或者

在此处描述的 CSS 中使用空白元素

http://www.w3schools.com/cssref/pr_text_white-space.asp

空白:nowrap;

于 2012-09-21T08:49:56.737 回答