8월 26일 Velog
학습한 내용
Youtube 실습
전체 틀 만들기
[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 에 있는 내용물에 영향을 주지 않도록
Author And Source
이 문제에 관하여(8월 26일 Velog), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ryuyoungseo8232/826Velog저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)