box centering
2008年08月06日 (xhtmlcss)
source
margin-left: auto; margin-right: auto;
sample source
<html>
<head>
<title>css test</title>
<style type="text/css">
#main {
width: 320px;
height: 240px;
background-color: #ff0000;
margin-right: auto;
margin-left: auto;
}
</style>
</head>
<body>
<div id="main">
div id="main"
</div>
</body>
</html>
note
margin-top: auto; margin-bottom: auto; としても上下はセンタリングできない.
PR
| HOME |