使 div 小于其内容
我正在尝试在网页上显示一个 div,其中大部分是文本。
我想知道是否可以将其变小,以便无法看到所有内容,以便稍后我可以使用 JavaScript 将其变大。
I'm trying to show a div on a webpage, with mostly text.
I would like to know if I can make it smaller so that not all the contents are able to be seen so I later on can make it larger using JavaScript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,只需指定隐藏的溢出即可。
EG:在 CSS 中:
这会使其在 100 像素后被切断。
Sure, just specify an overflow of hidden.
EG: in CSS:
That'd make it cut it off after 100 pixels.
如果你想使用CSS隐藏东西,我会使用display:none或visibility:hidden,而不是将它们放在太小的div中。
If you want to hide things using CSS, I'd use display:none or visibility:hidden, not putting them in a div that's too small.