61,124
社区成员
发帖
与我相关
我的任务
分享<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link type="text/css" rel="stylesheet" href="./index.css" />
</head>
<body>
<div class="content">
<div class="left">
<div id="public_msg"></div>
<div id="private_msg"></div>
</div>
<div class="right"></div>
</div>
</body>
</html>[code]
[code=CSS]
body{
border:0px;
padding:0px;
margin:0px;
}
.content{
width:100%;
height:100%;
border:#0000FF dashed;
padding:0px;
clear:both;
}
.left{
width:70%;
height:100%;
border:#FF0000 dashed;
float:left;
}
.right{
width:20%;
height:100%;
border:#00FF00 thin;
float:right;
}
#public_msg{
width: 100%;
height:50%;
overflow:scroll;
border:#FF0000 solid;
}
#private_msg{
width:100%;
height:30%;
border:#FF0000 solid;
}