8월 26일 Velog

학습한 내용

Youtube 실습

https://www.youtube.com/

전체 틀 만들기

[html]

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">

	<link rel="stylesheet" type="text/css" href="css/style.css">

	<title>유투브 튜토리얼</title>
</head>
<body>

	<div id="wrapper">

		<nav id="youtube_top_nav">
			
		</nav>


		<nav id="youtube_left_nav">
			<div id="youtube_left_content">

			</div>
		</nav>


		<main role="main" id="youtube_main">
			
		</main>
		


	</div>

</body>
</html>

[css]

* {
	margin: 0;
	padding: 0;

	box-sizing: border-box;
}

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

ol, ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	vertical-align: top;
}

button {
	background: transparent;
	border: none;
}

input {
	border: none;
	outline: none;
}

input:focus {
	outline: none;
}




#wrapper {
	position: relative;

	width: 100%;
	height: 100%;

	min-width: 1320px;
}




#youtube_top_nav {
	position: fixed;

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




#youtube_left_nav {
	position: fixed;

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

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

	/*overflow-y: auto;*/
	overflow-y: overlay;
	overflow-x: hidden;
}

#youtube_left_nav #youtube_left_content {
	position: absolute;
	
	height: 100%;
	background-color: gray;

	left: 0;
	right: 24px;

}



#youtube_main {
	position: absolute;

	background-color: #181818;
	
	top: 56px;
	left: 240px;
	right: 0;
	bottom: 0;
}
  • youtube_left_nav 에 스크롤을 준다
    -> youtube_left_content 에 있는 내용물에 영향을 주지 않도록

좋은 웹페이지 즐겨찾기