Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

HTML 및 CSS를 사용하여 사이드바 및 기본 콘텐츠 영역이 있는 페이지 만들기

<시간/>

유동적인 사이드바와 메인 콘텐츠 영역이 있는 웹페이지는 html과 body의 크기를 100%로 설정하여 생성됩니다.

다음 예는 이를 보여줍니다.

예시

<!DOCTYPE html>
<html>
<head>
<style>
html,body {
   height: 100%;
   color: white;
   font-size: 2em;
   line-height: 200px;
}
#parent {
   display: table;
   width: 100%;
   height: 100%;
}
#side {
   display: table-cell;
   background-color: turquoise;
   width: 20%;
   vertical-align: top;
   box-shadow: inset 0 0 10px black;
}
#main {
   display: table-cell;
   width: 80%;
   background: url("https://images.unsplash.com/photo-1611944444060- b50a1d80cfe6?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=800&ixlib=rb1.2.1&q=80&w=600");
}
</style>
</head>
<body>
<div id="parent">
<div id="side">Side</div>
<div id="main">Main</div>
</div>
</body>
</html>

출력

이것은 다음과 같은 결과를 생성합니다 -

HTML 및 CSS를 사용하여 사이드바 및 기본 콘텐츠 영역이 있는 페이지 만들기