gpt4 book ai didi

html - 使用 CSS 的锐利边框

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

我正在尝试标签 SOLD OUT 如下图所示 figure

enter image description here

但能够达到如下图所示的一定程度

enter image description here

使用以下 HTML 和 CSS

<a href="some-href">
<img src="img-url">
<div class="wp-sold-out-strip">SOLD OUT</div>
</a>

.wp-sold-out-strip {
text-align: center;
background-color: #8760AF;
width: 142px;
color: #FFF;
font-size: 13px;
font-weight: bold;
padding: 0px 0px;
position: absolute;
margin-top: -47px;
transform: rotate(-26deg);
}

最佳答案

你需要做一些事情:

  • 设置 parent 的positionrelative (在你的情况下)和 overflowhidden .
  • 设置“售罄”的width到会溢出的东西和图像的heightwidth100%填充父级

您需要 position:relative父级的,因此“售罄”将在 position:absolute 时与其父级对齐和 overflow:hidden将应用于它。

.parent {overflow: hidden; position: relative; display: block; width: 200px; height: 200px;}
.parent img { width: 100%; height: 100%;}
.wp-sold-out-strip {
text-align: center;
background-color: #8760AF;
width: 242px;
color: #FFF;
font-size: 13px;
font-weight: bold;
padding: 0px 0px;
position: absolute;
margin-top: -47px;
transform: rotate(-26deg);
}

<a href="some-href" class="parent">
<img src="http://i.stack.imgur.com/Mmww2.png">
<div class="wp-sold-out-strip">SOLD OUT</div>
</a>

https://jsfiddle.net/ivankovachev/snxt61an/

关于html - 使用 CSS 的锐利边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38451638/

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