我是新來編碼,所以請耐心等待,但在我正在工作的一個頁面上,我所做的按鈕上的填充被忽略,導致按鈕重疊相鄰元素。值得注意的是,我正在使用錨來製作按鈕。忽略填充在CSS錨點
HTML
<a class = "classicbtn">Sign Up</a>
SCSS
.classicbtn {
background-color: $primary-color;
border-radius: 2rem;
box-sizing: border-box;
color: $white;
font-size: 1.2rem;
font-weight: bold;
padding: 1rem 4rem; //this is what is ignored. Background wraps into the next div
margin: 0 auto;
text-decoration: none;
text-align: center;
&:hover {
background-color: $button-hover;
}
&:active {
background-color: $button-active;
}
}
這是我的第一個問題貼,所以希望一切都看起來不錯。提前致謝。