gpt4 book ai didi

html - 使链接背景与容器一样宽

转载 作者:太空宇宙 更新时间:2023-11-04 02:06:25 25 4
gpt4 key购买 nike

如何使链接的背景与它所在的容器一样宽?
我当前的代码:

.menu {
width: 500px;
height: 100%;
background-color: gray;
left: 0;
top: 0;
position: fixed;
}

.menu_content {
top: 50px;
position: relative;
width: 100%;
}

a.menuBtn, a.menuBtn:visited {
background-color: blue;
padding-left: 20px;
padding-top: 20px;
padding-bottom: 20px;
padding-right: 500px;
text-decoration: none;
color: white;
}
<div class="menu">
<div class="menu_content">
<a href="#" class="menuBtn">Start</a>

</div>
</div>

我希望无论链接文本多长,蓝色背景和灰色背景一样宽。链接文本距左侧 20px。

目前,由于填充,如果文本较长,蓝色背景会变宽。尝试了 padding-right: 100% 但显然没有用。 值得一试

最佳答案

a.menuBtn{
显示: block ;
}

并删除 padding-right:500px

关于html - 使链接背景与容器一样宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40655748/

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