使 aspx 网站上的表格中的文本大小动态变化
我正在制作一个简单的网站来显示 XML 文件中的信息,该文件是根据从服务器读取的信息创建的。问题是,如果用户在服务器上插入的信息太长,那么站点就会发生变化。我想知道如果超过一定数量的字符,是否可以使用 JQuery 和 CSS 使某些单元格中的文本变小?
I´m making a simple website to display information from XML file that is created from information read from a server. Problem is that if user inserts information onto the server which is too long then the site alters. I was wondering if I could use JQuery and CSS to make the text in a certain cells smaller if it exceeds certain number of characters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不会把文字变小。根据数量的不同,你可以把它写得很小,以至于没有人能读懂它。
为什么不将内容包装在
div
中,设置该div
的height
和width
以匹配您想要的任何内容table
单元格。然后将div
设置为overflow-y:scroll;
。这样,文本大小就不会改变,并且无论大小如何,内容都可用。
示例: http://jsfiddle.net/jasongennaro/zpZXD/
I would not make the text smaller. Depending on the amount, you could make it so small that no one could read it.
Why not wrap the content in a
div
, set thatdiv
'sheight
andwidth
to match whatever you want thetable
cell to be. Then set thediv
tooverflow-y:scroll;
.That way the text size won't change and the content will be usable no matter what the size.
An example: http://jsfiddle.net/jasongennaro/zpZXD/