我想知道,用纯 CSS 制作这个布局的最佳结构是什么。箭头可以是图像。
http://www.labonedesign.com.br/layout_2012.png
我需要一个流畅的布局,但我不知道怎么做。
粉红色是菜单容器,棕色是我的内容容器。
我已经尝试过了,但是在小分辨率下这不起作用:
<body>
<div class="glob">
<div class="main">
<div class="wrap_lateral">
<div class="lateral">
</div>
</div>
<div class="conteudo">
</div>
</div>
</div>
</body>
CSS:
body {position:absolute; min-width:100%; min-height:700px; width:100%; height:100%; overflow:hidden;}
.glob {position:absolute; width:100%; height:100%; overflow:hidden;}
.main {margin:0px auto 0 auto; width:100% z-index:2; height:100%;}
.wrap_lateral{
width:20%;
height:100%;
float:left;
background:#FFCC00 url(../img/seta.png) 330px center no-repeat;
}
.lateral{
position:relative;
left:0;
top:0;
width:330px;
height:100%;
float:left;
background:#ff0066;
}
.conteudo{
width:80%;
height:100%;
float: left;
background:#CC0000;
}
PS.:我是在 Photoshop 上做的 :)