gpt4 book ai didi

html - 收缩包裹两个元素 - 一个留在一行,第二个包裹以适应剩余宽度

转载 作者:太空宇宙 更新时间:2023-11-04 13:41:53 25 4
gpt4 key购买 nike

我想组织我的文章,使标题适合一个方框,几乎与缩进一样在发布者下面.. 如果我将最大宽度设置为 300px,它就可以工作;但我不想定义宽度 - 它应该适合剩余的宽度。

-----------------BODY------------------
| |
||-------------CONTAINER-------------||
||-PUPLISHER-----TITLE-fits remaining||
|||____________||width, text wrapped|||
|| |___________________|||
||___________________________________||
|_____________________________________|

如果我将最大宽度设置为 300px,它会起作用;但我不想定义宽度 - 它应该适合剩余的宽度。

 <div>
<span style="display: inline-block;">
content: one line no wrap, Stretches to fit text length;
</span>
<div style=" display: inline-block; max-width: 300px; " >
content: block box, Stretches to fit remaining width, longer text is wrapped.
</div>
</div>

最佳答案

您可以借助 jQuery 实现这一点,如下所示,

$(function () {
var wrapperWidth = $('.wrapper').width();
$('.wrapper').children('.outer').each(function () {
var mainWidth = $(this).children('.main').width();
var sutraction = wrapperWidth - mainWidth - 4;
// 4 is value of total border width i.e. blue and green border can be adjusted as per ur need
$(this).children('.sub').css('width', sutraction);
});

});

http://jsfiddle.net/49Jpt/6/

希望对您有所帮助!

关于html - 收缩包裹两个元素 - 一个留在一行,第二个包裹以适应剩余宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22679931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com