Files
firstgarden-web-gnu/test2.php

22 lines
424 B
PHP

<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>margin 계산</title>
<style>
#wrap {background:#bbb}
#test {float:left;background:#ddd}
#testb {float:left;background:#eee}
p {clear:both;margin:10px;border-top:1px solid #ddd}
</style>
</head>
<body>
<p>112312</p>
<div id="wrap">
<div id="test">1</div>
<div id="testb">2</div>
</div>
<p>111213123232312</p>
</body>
</html>