2021.08. 26 youtube css(1) ๐ŸŒด

hae.logยท2021๋…„ 8์›” 26์ผ
0

index.htmlโœ

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>์œ ํŠœ๋ธŒ ํŠœํ† ๋ฆฌ์–ผ</title>
	<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>


	<div id="wrapper">
		
		<nav id="youtube-top-nav">
			
		</nav>


		<nav id="youtube-left-nav">
			<div id="youtube-left-content">

			</div>
		</nav>

		<main id="youtube-main" role="main">
			
		</main>


	</div>




</body>
</html>

style.cssโœ

* {
	margin: 0;
	padding: 0;

	box-sizing: border-box;
}

html, body {
	widows: 100%;
	height: 100%;
}

ol, ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	vertical-align: top;
}

button {
	background-color: transparent;
	border: none;
}

input {
	outline: none;
	border: none;
}

input:focus {
	outline: none;
}

#wrapper {
	position: relative;
	widows: 100%;
	height: 100%;
	min-width: 1320px;
}


/* ์ƒ๋‹จ ๋ฉ”๋‰ด */
#youtube-top-nav {
	position: fixed;

	width: 100%;
	height: 56px;
	background-color: #212121;
}


#youtube-left-nav {
	overflow-y: auto;
	overflow-x: hidden;
	position: fixed;

	width: 240px;
	background-color: #212121;

	top: 56px;
	left: 0;
	bottom: 0;
}


/* ์™ผ์ชฝ ์‚ฌ์ด๋“œ ๋ฉ”๋‰ด */
#youtube-left-content {
	position: absolute;
	width: 225px;
	height: 100%;
	background-color: grey;
}


/* ์œ ํŠœ๋ธŒ ๋ฉ”์ธ */
#youtube-main {
	position: absolute;
	left: 240px;
	top: 56px;
	right: 0;
	bottom: 0;
	background-color: grey;
}

๊ฒฐ๊ณผ๋ฌผ ๐Ÿš€

0๊ฐœ์˜ ๋Œ“๊ธ€