gpt4 book ai didi

html - 向矩形 div 添加形状

转载 作者:行者123 更新时间:2023-11-28 15:50:03 25 4
gpt4 key购买 nike

我有一个矩形 div(它是一列的标题),我想在矩形上方放置一个带状/书签类型的形状。

我目前拥有的 jsfiddle 是 http://jsfiddle.net/Conye9980/zujLrs3d/3/

.triangle-down {
width: 0;
height: 0;
border-left: 25px solid transparent;
border-right: 25px solid transparent;
border-top: 25px solid #555;
align:right;
}
.square {
height: 50px;
width: 50px;
background-color: #555;
align:right;
}
.rect {
margin: 20px;
width:200px;
height: 80px;
background-color: yellow;
}

这里是我希望它看起来像的示例:

Image

最佳答案

这对你来说够好吗?我将“功能区”的两部分包裹在一个 div 中,并给它 position: absolutetop & right 定位。

   .triangle-down {
width: 0;
height: 0;
border-left: 25px solid transparent;
border-right: 25px solid transparent;
border-top: 25px solid #555;
align:right;
}
.square {
height: 50px;
width: 50px;
background-color: #555;
align:right;
}

.rect {
margin: 20px;
width:200px;
height: 80px;
background-color: yellow;
position:relative;
}

#ribbon {
position: absolute;
top: -8px;
right: 8px;
}
<div class="rect">
<div id="ribbon">
<div class="square"></div>
<div class="triangle-down"></div>
</div>
</div>

关于html - 向矩形 div 添加形状,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51986893/

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