后台
代码
margin: 0px;
}
.div1{
width: 100%;
height: 110px;
background: #efe;
}
.div2{
width: 120px;
height: 1000px;
background: #efc;
}
.div3{
/* css calc(自动调整表单域的大小以适应其容器的大小
) */
width: calc(100% - 120px);
height: 1000px;
left: 120px;
top: 110px;
z-index: 9999;
position: absolute
}
.div3 iframe{
width: calc(100% - 120px);
height: calc(100% - 110px)
}
</style>
<body>
<div class="div1">
<h1>后台管理</h1>
<div style="float: right;">
<span>admin </span>
<span><a href="javascript">退出</a></span>
</div>
</div>
<div class="div2">
<ul>
<li style="line-height: 30px;"><a href="https://www.php.cn/" target="content">php中文网</a></li>
<li style="line-height: 30px;"><a href="https://urzzex.cn/" target="content">币严</a></li>
<li style="line-height: 30px;"><a href="https://image.baidu.com/"target="content">百度图片</a></li>
<li style="line-height: 30px;"> <a href="http://www.zongheng.com/"target="content">纵横中文网</a></li>
</ul>
</div>
<div class="div3">
<iframe src="" frameborder="3" name="content"></iframe>
</div>
</body>