gpt4 book ai didi

html - 文本在增长到最大宽度之前换行

转载 作者:行者123 更新时间:2023-11-28 01:36:25 24 4
gpt4 key购买 nike

我有一个 <div>带套装 max-width包含一些文本。问题是 div 永远不会增长到它的 max-width。文本总是换行。

CSS:

/*Container*/
.tooltip {
position: absolute;
left: 0;
top: 0;
padding: 15px;
background-color: #12161AEE;
display: none;
z-index: 100;
cursor: default;
pointer-events: none;
}

/*Text*/
.tooltip-subtitle {
color: #EEEEEE;
max-width: 350px;
word-wrap: break-word;
font-style: italic;
font-size: 13px;
}

结果:

最佳答案

我认为您只需要将 text-align: justify; 添加到字幕 CSS 中即可。这会将单词散布在元素的整个宽度上。

.tooltip-subtitle {
color: #EEEEEE;
max-width: 350px;
word-wrap: break-word;
font-style: italic;
font-size: 13px;
text-align: justify;
}

关于html - 文本在增长到最大宽度之前换行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50652555/

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