gpt4 book ai didi

html - 在顶部对齐 Div 内的 Span

转载 作者:太空宇宙 更新时间:2023-11-04 14:32:13 26 4
gpt4 key购买 nike

我想对齐 div block 右侧顶部的红色标签。这是我的进步http://jsfiddle.net/E2aWr/158/

html

<div class="block">
<a href="#"><img src="http://www.balloontothemoon.com/images/Bubbles.jpg">
<span class="red-sticker">1<p>2</p></span>
</a>
</div>

CSS

.red-sticker {
font-family: Arial,sans-serif;
position: absolute;
right: 0px;
top: 0px;
display: block;
width: 32px;
height: 32px;
padding-top: 5px;
font-size: 12px;
line-height: 12px;
text-align: center;
float: left;
color: #FFF;
border-radius: 50%;
background-color: #A50200;
background-image: linear-gradient(to bottom, #CB0400, #A50200);
}
p:last-child {
margin-bottom: 0px;
}

最佳答案

简单的方法。

.block{
position:absolute;
}

.red-sticker {
font-family: Arial,sans-serif;
position: absolute;
right: -10px;
top: -10px;
display: block;
width: 32px;
height: 32px;
padding-top: 5px;
font-size: 12px;
line-height: 12px;
text-align: center;
float: left;
color: #FFF;
border-radius: 50%;
background-color: #A50200;
background-image: linear-gradient(to bottom, #CB0400, #A50200);
}

这是 working example在 jsfiddle 中

关于html - 在顶部对齐 Div 内的 Span,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33479086/

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