gpt4 book ai didi

css - 你如何让边界在跨度上折叠?

转载 作者:太空宇宙 更新时间:2023-11-04 09:47:59 24 4
gpt4 key购买 nike

如果您在此 html 上执行 tryit 编辑器并使结果窗口变窄(如 200 像素),则边框位于 span 内,因为它占据了多行。我怎样才能“折叠”边框,以便它在跨度周围形成一个(不规则的)边框? http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_word-wrap

我并不是要改变流程。我正在尝试像使用荧光笔一样“突出显示一个句子”。但我也想要一个边框。但我想要一个不规则形状的边框,而不是默认边框。

目前的问题: enter image description here

[不要忘记用这个 html 替换编辑器 html]

<!DOCTYPE html>
<html>
<head>
<style>
.test {
width: 11em;
border: 1px solid #000000;
word-wrap: break-word;
border-collapse:collapse;
}
</style>
</head>
<body>

<p> <span class="test"> This paragraph contains a very long word: thisisaveryveryveryveryveryverylongword.</span> The long word will break and wrap to the next line.</p>

</body>
</html>

编辑固定跨度:

enter image description here

最佳答案

使用outline代替border

.test {
word-wrap: break-word;
outline: 3px solid red;
}
p {
width: 80%;
margin: auto;
}
<p> You should know that <span class="test">this paragraph contains a very long word: thisisaveryveryveryveryveryverylongword.</span> The long word will break and wrap to the next line.</p>

关于css - 你如何让边界在跨度上折叠?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39337258/

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