2020-10-17から1日間の記事一覧

HTML/CSS iosで背景固定

body:before{ content:""; display:block; position:fixed; top:0; left:0; z-index:-1; width:100%; height:100vh; background:url(image.jpg) center no-repeat; background-size:cover; } CSSによる疑似要素によりbodyの前に要素を追加して固定contentプ…