Files
firstgarden-web-gnu/test2.php
2013-03-04 13:45:54 +09:00

34 lines
922 B
PHP

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>margin 계산</title>
<style>
ul {list-style:none;width:200px}
li {float:left;width:50px;height:50px}
</style>
</head>
<body>
<ul>
<li style="background:#eee">1</li>
<li style="background:#ddd">2</li>
<li style="background:#eee">3</li>
<li style="background:#ddd">4</li>
<li style="background:#ddd;clear:both">5</li>
<li style="background:#eee">6</li>
<li style="background:#ddd">7</li>
<li style="background:#eee">8</li>
<li style="background:#eee;clear:both">9</li>
<li style="background:#ddd">10</li>
<li style="background:#eee">11</li>
<li style="background:#ddd">12</li>
<li style="background:#ddd;clear:both">13</li>
<li style="background:#eee">14</li>
<li style="background:#ddd">15</li>
<li style="background:#eee">16</li>
</ul>
</body>
</html>