トップページで見せるメインビジュアルスライダーの画像や動画の上にメッシュを重ねる方法
html
<div class="slider"> <img src="./images/slide-image.jpg"> </div><!--/.slider-->
css
.slider {
position: relative;
}
.slick::before {
content: "";
position: absolute;
z-index: 2;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.25) 0, rgba(255, 255, 255, 0.25) 3px), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0.25) 0, rgba(255, 255, 255, 0.25) 3px);
}