gpt4 book ai didi

javascript - 为什么我不能将线宽调整为 100%

转载 作者:太空宇宙 更新时间:2023-11-03 21:23:31 25 4
gpt4 key购买 nike

我不想从左侧的文本设置行的全宽。

如果文本有一个单词有5个字母是这样的:

如果文本有 3 个词是这样的:

谁能帮帮我,这是我试图解决我的问题的方法,但它在语义上没有用

https://jsfiddle.net/xoty99bc/

<h3>
Lorem
</h3><div class"line">

</div>


h3{
display:inline-block;
width:20%;
}
div{
display:inline-block;
height:2px;
width:80%;
background-color:red;
}

最佳答案

您可以使用Flexbox:after伪元素。或者如果你不想使用 :after 你可以这样做 Demo

h3 {
display: flex;
align-items: center;
}

h3:after {
content: '';
flex: 1;
height: 1px;
background: red;
margin-left: 10px;
}
<h3>Lorem ipsum </h3>

关于javascript - 为什么我不能将线宽调整为 100%,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35255097/

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