马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
更好的控制页面布局。不用多说。
经由明天一翻改善,终究找出懂得决DIV垂直居中的举措。
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>CSS结构技能:未知高度div垂直居中的成绩</title>
<styletype="text/css">
html,body
{
height:100%;
padding:0;
margin:0;
}
body
{
min-height:200px;
text-align:center;
min-width:402px
}
.FirstDIV
{
margin-top:-100px;/*SecondDIV高度的一半*/
float:left;
width:100%;
height:50%;
}
.SecondDIV
{
clear:both;
border:silver1pxsolid;
background:#666;
margin-left:auto;
overflow:auto;
width:400px;
margin-right:auto;
height:200px;
text-align:left
}
</style>
</head>
<body>
<divclass="FirstDIV"></div>
<divclass="SecondDIV">
<p>看看,这不就居中了。呵呵。并且没有成绩哦。www.Webjx.com</p>
<p>body{background-color:#FFF5F0}<br>
div{position:absolute;top:50%;left:50%;margin:-100px00-200px;
width:400px;height:200px;border:1px#CCCC00solid;font-family:Arial,
Helvetica,sans-serif;color:#666666}</p>
</div>
</body>
</html>
演示代码:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/><title>CSS结构技能:未知高度div垂直居中的成绩</title><styletype="text/css">html,body{height:100%;padding:0;margin:0;}body{min-height:200px;text-align:center;min-width:402px}.FirstDIV{margin-top:-100px;/*SecondDIV高度的一半*/float:left;width:100%;height:50%;}.SecondDIV{clear:both;border:silver1pxsolid;background:#666;margin-left:auto;overflow:auto;width:400px;margin-right:auto;height:200px;text-align:left}</style></head><body><divclass="FirstDIV"></div><divclass="SecondDIV"><p>看看,这不就居中了。呵呵。并且没有成绩哦。www.Webjx.com</p><p>body{background-color:#FFF5F0}<br>div{position:absolute;top:50%;left:50%;margin:-100px00-200px;width:400px;height:200px;border:1px#CCCC00solid;font-family:Arial,Helvetica,sans-serif;color:#666666}</p></div></body></html>
[Ctrl+A全体选择提醒:你可先修正部分代码,再按运转]
层叠样式表(CascadingStyleSheets)的缩写,用于定义HTML元素的显示形式,是W3C推出的格式化网页内容的标准技术。网页设计者必须掌握的技术之一。 |