gpt4 book ai didi

css - 如何添加填充/边距以移动 :after up

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

我正在尝试将 :after 向上移动,以便它与旁边元素的顶部更加对齐。我试过添加 padding-toppadding-bottom,添加 margin-topmargin-bottom,但这些都不起作用。

#myDiv:after {
color: #D03540;
content: " *";
}

有什么想法吗?

最佳答案

只需将绝对位置属性值应用于 #myDiv:after,然后使用 TopBottom 设置到所需位置LeftRight 属性值。

#myDiv {
position: relative; /* To curtail overlap */
}

#myDiv:after {
color: #D03540;
content: " *";
position: absolute;
top: 0; /* Adjust as needed */
left: 0; /* Adjust as needed */
right:0; /* Adjust as needed */
}

关于css - 如何添加填充/边距以移动 :after up,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28222513/

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