1.jpg~3.jpgの画像を
うっすら暗くしたいのですが全く変わりません。
CSSのどこがおかしいのか教えていただけると助かります。
.bannermenu_list li:nth-child::before{
background-color: rgba(0,0,0,0.5);
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: ' ';
}
.bannermenu_list li:nth-child(1) {
background-image: url(../img/1.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.bannermenu_list li:nth-child(2) {
background-image: url(../img/2.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.bannermenu_list li:nth-child(3) {
background-image: url(../img/3.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
回答1件
あなたの回答
tips
プレビュー