如何將鏈接的背景設置爲與其內部的容器一樣寬?
我當前的代碼:製作與容器一樣寬的鏈接背景
.menu {
\t width: 500px;
\t height: 100%;
\t background-color: gray;
\t left: 0;
\t top: 0;
\t position: fixed;
}
.menu_content {
\t top: 50px;
\t position: relative;
\t width: 100%;
}
a.menuBtn, a.menuBtn:visited {
\t background-color: blue;
\t padding-left: 20px;
\t padding-top: 20px;
\t padding-bottom: 20px;
\t padding-right: 500px;
\t text-decoration: none;
\t color: white;
}
<div class="menu">
\t \t <div class="menu_content">
\t \t \t <a href="#" class="menuBtn">Start</a>
\t \t \t
\t \t </div>
\t </div>
我想它,不管鏈接文本有多長,有寬的藍色背景爲灰色背景。鏈接文本從左邊起爲20px。
由於填充,當前藍色背景變得更寬,如果文本更長。嘗試填充權利:100%,但顯然這沒有奏效。 值得一試,雖然
啊,謝謝!刪除了所有填充物,除了填充物之外,現在效果很好,謝謝! –
不客氣! – n1kkou