DIV+CSS布局:DIV层重叠

来源:互联网 发布:乔安官网软件下载 编辑:程序博客网 时间:2024/05/16 12:14

DIV代码如下:

    <div id="content" class="content"><!-- begin --><div class="content_tab"><%@include file="content.jsp"%></div><!-- end --></div>

CSS样式如下:(注意position属性)

.content {margin: 0 205px !important;margin: 0 202px;height: 800px;background: #cff;position: relative;}.content_tab{position: absolute;z-index:99;margin-top: 0px;}