您的位置:首页 > Web前端 > CSS

CSS100%布局小事例

2015-08-25 14:55 711 查看
<head>

<title></title>

<style type="text/css">

*{
padding:0; margin:0;}

html{
overflow:hidden; height:100%}

</style>

</head>

<body style="position:relative; height:100%;
width:100%;">

<form id="form1" runat="server"
style="position:relative; height:100%;
width:100%;">

<div style=" vertical-align:top;
background-color:Black; height:40%;">

<table>

<tr><td></td></tr>

</table>

</div>

<div style="vertical-align:bottom;
background-color:Blue;
height:60%"></div>

</form>

</body>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: