gpt4 book ai didi

html - 带底线的 CSS3 三 Angular 形

转载 作者:可可西里 更新时间:2023-11-01 12:48:48 30 4
gpt4 key购买 nike

是否可以使用 CSS3 绘制下面提到的对象??

enter image description here

(中间的三 Angular 形,三 Angular 形的左右两侧底部有一条线)。

请多多指教。

最佳答案

HTML:

<div class="arrow"></div>
<div class="line"></div>

CSS:

.arrow {
height: 0;
width: 0;
border-bottom: 8px solid #FF0000;
border-left: 16px dotted transparent;
border-right: 16px dotted transparent;
left: 0px;
top: 2px;
margin-left: 20px;
z-index: 1;
position: relative;
}
.line {
width: 200px;
height: 2px;
background: #FF0000;
}

尺寸不完全相同,但您可以像那样编辑和创建。

编辑:对于您的新形状,在 CSS 和 HTML 中添加以下内容:

CSS:

.fill {
position: relative;
left: -14px;
top: 2px;
height: 0;
width: 0;
border-bottom: 6px solid #ffffff;
border-left: 14px dotted transparent;
border-right: 14px dotted transparent;
z-index: 2;
}

HTML:

<div class="arrow">
<div class="fill"></div>
</div>
<div class="line"></div>

关于html - 带底线的 CSS3 三 Angular 形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20988143/

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