如何动态设置div大小?

发布于 2024-11-17 06:03:14 字数 159 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(2

转角预定愛 2024-11-24 06:03:14

使用 css 或 style 属性来做到这一点。

stuff

display:inline; <--- 用于歌剧。

display:inline-block; <--- 适用于其他浏览器。

JavaScript 进行浏览器检查

您可以使用类似这样的

 var divBlock=(navigator.userAgent.indexOf('Opera')>-1)?"inline":"inline-block";

,然后根据该变量设置样式显示选项

请记住,这将导致类似流程的行为,因此如果您需要新行,请确保添加
;
在 div 后面

<div style="display:inline-block;">stuff</div>
<br />
<div style="display:inline-block">stuff 2</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

 var divBlock=(navigator.userAgent.indexOf('Opera')>-1)?"inline":"inline-block";

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 div

<div style="display:inline-block;">stuff</div>
<br />
<div style="display:inline-block">stuff 2</div>

OR you can use <span></span> instead of div

衣神在巴黎 2024-11-24 06:03:14
<div class="myText">My Text</div>

.myText {
    display: inline;
}

这会将 div 的长度更改为宽度。如果您希望能够指定最小高度和宽度,请使用 inline-block:

.myText {
    display: inline-block;
    min-width: 40px;
    max-width: 120px; //If you want to start wrapping text at a certain width;
}
<div class="myText">My Text</div>

.myText {
    display: inline;
}

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:

.myText {
    display: inline-block;
    min-width: 40px;
    max-width: 120px; //If you want to start wrapping text at a certain width;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文