gpt4 book ai didi

html - 用作行的 div 旁边的文本

转载 作者:行者123 更新时间:2023-11-28 00:32:47 25 4
gpt4 key购买 nike

我有以下 HTML 和 CSS,用于开头带有圆圈的行。

这个圆圈用作图像的信息 - 它指向它 - 因此我需要在该行的末尾添加一些文本。大致是这样的:

------------ 文本

我该如何实现?

.circle {
display: inline-block;
vertical-align: center;
width: 20px;
height: 20px;
background-color: #D3072A;
border: solid 1px #D3072A;
border-radius: 50%;
position: absolute;
top: -9px;
left: -1px;
}

.markers {
top: 10%;
left: 5%;
width: 500px;
height: 3px;
background-color: #D3072A;
position: absolute;
}
<div class="markers">
<div class="circle">
</div>
</div>

最佳答案

你可以通过使用 :after 选择器来实现:

示例:

.circle {
display: inline-block;
vertical-align: center;
width: 20px;
height: 20px;
background-color: #D3072A;
border: solid 1px #D3072A;
border-radius: 50%;
position: absolute;
top: -9px;
left: -1px;
}

.markers {
top: 10%;
left: 5%;
width: 200px;
height: 3px;
background-color: #D3072A;
position: absolute;
}
.markers::after {
width:100%;
content:"Text"; /*Text here*/
position:absolute;
right:-100%;
top:-9px;
}
<div class="markers">
<div class="circle">
</div>
</div>

我希望这能奏效。

关于html - 用作行的 div 旁边的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57945288/

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