<!-- DIV css연습-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko"> <head> <title>div + css</title>
<style type="text/css"> div.t{background-color:pink;} .div01{width:200px; background-color:blue;color:white; margin:auto;} .top{width:800px; height:100px;background-color:red; margin:auto;} .category{width:800px; height:50px;background-color:orange; margin:auto;} .content{width:800px; height:500px;background-color:yellow; margin:auto;} .bottom{width:800px; height:80px;background-color:green; margin:auto;}
</style>
</head>
<body> <div class="t">DIV의 특징</div>
<!--div는 가운데 정렬 할 경우 무조건 가로사이즈를 준다.--> <div class="div01">가로사이즈200</div> <br><br><br><br><br>
<div class="top">상단</div> <div class="category">카테고리</div> <div class="content">상품목록</div> <div class="bottom">하단</div>
</body> </html>
div.html
|