使 aspx 网站上的表格中的文本大小动态变化

发布于 2024-11-18 06:52:11 字数 134 浏览 6 评论 0原文

我正在制作一个简单的网站来显示 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 技术交流群。

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

发布评论

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

评论(1

尴尬癌患者 2024-11-25 06:52:11

我不会把文字变小。根据数量的不同,你可以把它写得很小,以至于没有人能读懂它。

为什么不将内容包装在 div 中,设置该 divheightwidth 以匹配您想要的任何内容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 that div's height and width to match whatever you want the table cell to be. Then set the div to overflow-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/

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