More actions
imported>enoch No edit summary |
imported>zzgwm No edit summary |
||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
== 데블스캠프2009/월요일/연습문제/HTML-CSS/박준호 == | == 데블스캠프2009/월요일/연습문제/HTML-CSS/박준호 == | ||
<html> | |||
<head> | |||
<style type="text/css"> | |||
body { | |||
background-image:url('paper.gif'); | |||
padding:0px; | |||
margin:0px; | |||
} | |||
#title | |||
{ | |||
width:100%; | |||
border-width:5px; | |||
border-style:solid; | |||
} | |||
#left | |||
{ | |||
float:left; | |||
width:28.4%; | |||
height:200px; | |||
border-width:3px; | |||
border-style:solid; | |||
} | |||
#center | |||
{ | |||
float:left; | |||
width:38%; | |||
height:200px; | |||
border-width:3px; | |||
border-style:solid; | |||
} | |||
#title:hover | |||
{background:red;} | |||
#left:hover | |||
{background:red;} | |||
#center:hover | |||
{background:red;} | |||
</style> | |||
</head> | |||
<body> | |||
<div id="title"> <a herf="www.naver.com">&nbsp;</a> </div> | |||
<div style="width:100%; height:200px;"> | |||
<div id="left"> <a herf="www.naver.com"> hellow </a> </div> | |||
<div id="center"> <a herf="www.naver.com"> hellow </a> </div> | |||
<div id="left"> <a herf="www.naver.com"> hellow </a> </div> | |||
</div> | |||
<div id="title"> <a herf="www.naver.com"> hellow </a> </div> | |||
</body> | |||
</html> | |||
Latest revision as of 06:52, 22 June 2009
데블스캠프2009/월요일/연습문제/HTML-CSS/박준호
<html>
<head>
<style type="text/css">
body {
background-image:url('paper.gif');
padding:0px;
margin:0px;
}
#title
{
width:100%;
border-width:5px;
border-style:solid;
}
#left
{
float:left;
width:28.4%;
height:200px;
border-width:3px;
border-style:solid;
}
#center
{
float:left;
width:38%;
height:200px;
border-width:3px;
border-style:solid;
}
#title:hover
{background:red;}
#left:hover
{background:red;}
#center:hover
{background:red;}
</style>
</head>
<body>
<div id="title"> <a herf="www.naver.com"> </a> </div>
<div style="width:100%; height:200px;">
<div id="left"> <a herf="www.naver.com"> hellow </a> </div>
<div id="center"> <a herf="www.naver.com"> hellow </a> </div>
<div id="left"> <a herf="www.naver.com"> hellow </a> </div>
</div>
<div id="title"> <a herf="www.naver.com"> hellow </a> </div>
</body>
</html>