如何动态设置div大小?
我有一个 div 容器,其中包含用户之前输入的文本。我想根据此文本调整 div 的大小。我不能有固定的大小,因为我不知道文本的长度。如果没有指定大小,则 div 占据整个窗口的宽度。这给我带来了一些问题,因为我使用的是 JQuery 可拖动插件,并且当拖动 div 时滚动条会立即出现。对此有什么建议吗?
I have a div container with a text that has been previously typed in by the user. I would like to adjust the size of the div to this text. I cannot have fixed size because I dont know the length of the text. If there is no size specified div takes the width of entire window. This cause some problems for me because I am using JQuery draggable plugin and the scrollbars appear immediately when the div is dragged. Any advice on that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 css 或 style 属性来做到这一点。
display:inline;
<--- 用于歌剧。display:inline-block;
<--- 适用于其他浏览器。JavaScript 进行浏览器检查
您可以使用类似这样的
,然后根据该变量设置样式显示选项
请记住,这将导致类似流程的行为,因此如果您需要新行,请确保添加
在 div 后面;
或者您可以使用
代替 div
do this with css or with the style property.
<div style="display:inline-block"> stuff </div>
display:inline;
<--- for opera.display:inline-block;
<--- for other browsers.You can do the browser check with javascript
something like this
then set the style display option based on that variable
Keep in mind this will cause a flow like behavior so if you need a new line make sure to add
<br />
after the divOR you can use
<span></span>
instead of div这会将 div 的长度更改为宽度。如果您希望能够指定最小高度和宽度,请使用 inline-block:
That will change the length of the div to the width. If you want to be able to specify a minimum height and width, use inline-block: