私は辛抱強くお待ちください。作業中のページでは、ボタンのパディングが無視され、隣接する要素がオーバーラップします。私がボタンを作るためにアンカーを使用していることは注目に値する。は、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;
}
}
これがうまくいけば、すべてが正常に見える掲載の私の最初の質問です。前もって感謝します。