前提・実現したいこと
HTML&CSS コーディングプラクティスブック1実践シリーズをしているのですが、
1つ目のハンバーガーの部分で表示がどうしてもされません。
何度も確認し、同じコードを書いているはずなのですが表示されず、行き詰まってしまいました。
内容は理解したし、何度も確認しているのですがわかりません。
何が間違えているのでしょうか?
CSSで一旦下のボタンの表示を消した上に、
heightで太さを指定して表示するような構造にしたいです。
該当のソースコード
.nav-button {
box-sizing: content-box;
padding: 0;
outline: none;
border: none;
background: none;
width: 20px;
height: 14px;
cursor: pointer;
color: #2E5180;
}
.nav-button::before,
.nav-button::after{
content: ``;
display: block;
height: 2px;
background-color: currentColor;
transform: translateY(5px);
}
.nav-button::before {
transform: translateY(-5px);
box-shadow:0 6px currentColor;
}