如何修复 GridView 中的这个单元格?

发布于 2024-12-29 11:12:20 字数 535 浏览 0 评论 0 原文

我在 Internet Explorer 中遇到以下问题。问题是:我正在使用 GridView 控件,其一列将月份显示为(2011 年 12 月、2012 年 1 月...等)。我想在一行中显示这几个月(没有任何中断)。它在 Firefox 中运行良好,如下所示: Jan-2012

但是,在 IE 中,我有这样的结果,我不知道为什么:

Jan-

2012

的 css 代码TD(单元格):

.grid .datatable .row TD
{
    font-size:11px;
    text-align:center;
    font-weight:bold;
    padding:6px 4px;
} 

那么如何解决这个问题,以便在 IE 中像在 Firefox 中一样正常工作?

(抱歉,因为我是新用户,所以无法向您提供快照在这个伟大的社区)

I have the following problem just in the Internet Explorer. The problem is: I am using the GridView control and one of its columns shows the Months as (Dec-2011, Jan-2012... etc). I want to show these months in one line (without any break). It works very well in Firefox as shown here:
Jan-2012

However, in the IE, I have it like this and I don't know why:

Jan-

2012

The css code for the TD (cell):

.grid .datatable .row TD
{
    font-size:11px;
    text-align:center;
    font-weight:bold;
    padding:6px 4px;
} 

So how to fix that to be worked well in the IE as in the Firefox?

(Sorry because I could not be able to provide you with the snapshots since I am a new user in this great community)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清欢 2025-01-05 11:12:20

尝试将以下内容添加到您的样式中以防止换行:

white-space:nowrap;

Try adding the following to your style to prevent wrapping:

white-space:nowrap;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文