Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个复选框组,其中包含多个可能包含空格的项目。它是一个水平复选框。正在发生的事情是物品包装在物品中有空间的地方。
我怎样才能让它们不包装?
另外我如何控制宽度?我尝试设置控件的宽度,甚至将其放在设置了宽度的面板中,但似乎没有任何效果。
在应用程序的样式表中尝试这样的事情:
.xspCheckBox { width: 500px; /* change to your preferred width */ } .xspCheckBox td { white-space: nowrap; }