넷플릭스 로그인 1

jb kim·2023년 7월 9일
0

CSS 실전예제

목록 보기
4/9
		<link rel="shortcut icon" href="images/nficon.ico" type="image/x-icon" />
		<title>Netflix</title>
		<link rel="stylesheet" href="style.css" />

css


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #000;
}

body::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background: url("images/hero-img.jpg");
    background-position: center;
}
profile
픽서

0개의 댓글