gpt4 book ai didi

html - :before as wide as element

转载 作者:太空宇宙 更新时间:2023-11-04 01:51:49 27 4
gpt4 key购买 nike

我已经尝试应用 width 但它没有帮助,我想要的是制作可点击的外部填充。

.btn {
background-color: red;
padding: 10px;
height: 20px;
}

.btn:before {
content: '';
min-height: 60px; /*dont mind*/
width: 100px;
/*issue*/
margin: -10px -10px;
background-color: blue;
position: absolute;
z-index: -1;
}
<a href="#" class="btn">btn</a>

如果 pxs 是手动的并且不能使用 %(绝对定位),我如何将内部宽度与 :before 宽度匹配

最佳答案

使用 position: relative 突然间你可以使用百分比值了。

.btn {
background-color: red;
padding: 10px;
height: 20px;
position: relative;
}

.btn:before {
content: '';
min-height: 60px; /*dont mind*/
width: 100%;
/*issue*/
margin: -10px -10px;
background-color: blue;
position: absolute;
z-index: -1;
}
<a href="#" class="btn">btn</a>

关于html - :before as wide as element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43351366/

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