1.登录界面居中布局实现:
随浏览器大小,界面布局始终在中间。
Eg:
<html>
<head>
<meta name="my" content="david">
<style>
#one {
position:relative;
top:50%;
left:50%;
margin-left:-150px;
margin-top:-100px;
width:300px;
height:200px;
background:red;
}
</style>
</head>
<body>
<div id="one">
123415646
</div>
</body>
</html>
2.注册界面的实现:
也随浏览器大小变化,有一个最小宽高度。
Eg:
<html>
<head>
<meta name="my" content="david">
<style>
#one {
width:100%;
height:100%;
margin:100px 150px 100px 150px;
background:red;
min-width:200px;
}
</style>
</head>
<body>
<div id="one"> </div>
</body>
</html>