gpt4 book ai didi

html - 用css构造两个箭头

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

我想尝试仅使用 CSS3 完成与下图(两个箭头)非常非常相似的事情。下一个和上一个。

enter image description here

我需要知道的是如何构建上图中显示的内容——仅使用 CSS3?

最佳答案

HTML:

<div class="arrow">
<div class="triangle-left"></div>
<div class="tail left-arrow"></div>
</div>

<div class="arrow">
<div class="triangle-right"></div>
<div class="tail right-arrow"></div>
</div>

CSS:

.arrow { position:relative; width: 130px; }
.triangle-left {
border-color: transparent green transparent transparent;
border-style: solid;
border-width: 20px;
width: 0;
height: 0;
float: left;
}
.triangle-right {
border-color: transparent transparent transparent green;
border-style: solid;
border-width: 20px;
width: 0;
height: 0;
float: right;
}
.tail { width: 20px; height: 10px; position: absolute; background-color: green }
.tail.left-arrow { left: 40px; top: 15px }
.tail.right-arrow { right: 40px; top: 15px }

SEE DEMO

关于html - 用css构造两个箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14480216/

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