css:div定位(2个多个div的列(左-右)+中心div)
我试图将网站定位为:
-------------------
{ }{ }{ }
{ }{ }{ }
-----{ }-----
{ }{ }{ }
{ }{ }{ }
-------------------
有什么想法吗?尝试左右浮动,但相应的列不断环绕到中心,使我无法将中心 div 放在那里。
左列和右列有 leftcolumn 和 rightcolumn 类
我的代码: 左栏:
div.aside.gauche div.section.colonne.categories {
height:460px;
width:210px;
border-style:solid;
margin-top:16px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:left;
}
div.aside.gauche div.section.colonne.commentaires {
height:85px;
width:210px;
border-style:solid;
margin-top:6px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:left;
}
div.aside.gauche div.section.colonne.magasins {
height:321px;
width:210px;
border-style:solid;
margin-top:6px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:left;
}
右栏:
div.aside.droite div.section.colonne.recherche {
height:460px;
width:170px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:right;
}
div.aside.droite div.section.colonne.suivez {
height:460px;
width:170px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:right;
}
div.aside.droite div.section.colonne.partenaires {
height:460px;
width:170px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:right;
}
中心部分
div.milieu {
float:left;
display:block;
}
Im trying to position the website like that:
-------------------
{ }{ }{ }
{ }{ }{ }
-----{ }-----
{ }{ }{ }
{ }{ }{ }
-------------------
Any ideas? tried float left and right but respective columns keep wrapping to the center making me unable to put the center div there.
Left and right columns are have leftcolumn and rightcolumn class
My code:
left column:
div.aside.gauche div.section.colonne.categories {
height:460px;
width:210px;
border-style:solid;
margin-top:16px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:left;
}
div.aside.gauche div.section.colonne.commentaires {
height:85px;
width:210px;
border-style:solid;
margin-top:6px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:left;
}
div.aside.gauche div.section.colonne.magasins {
height:321px;
width:210px;
border-style:solid;
margin-top:6px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:left;
}
right column:
div.aside.droite div.section.colonne.recherche {
height:460px;
width:170px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:right;
}
div.aside.droite div.section.colonne.suivez {
height:460px;
width:170px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:right;
}
div.aside.droite div.section.colonne.partenaires {
height:460px;
width:170px;
border: 1px solid black; -moz-border-radius: 0.3em 0.3em 0.3em;
float:right;
}
center piece
div.milieu {
float:left;
display:block;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您的所有 div 都有特定的高度和宽度,您可以对所有 div 使用position:absolute 并指定它们的确切位置。
然后使用你的CSS:
我为每个div指定了背景颜色,这样如果你想剪切/粘贴它来查看,你可以看到它们在哪里。我用的是你指定的尺寸。但是您可以轻松地对此进行调整,使一个或多个 div 变大,使它们的尺寸相等或根据屏幕尺寸进行更改。
If all your divs will have specific heights and widths, you can use position:absolute for all your divs and specify where they go exactly.
Then with your css as such:
I specified background-color for each div so you can see where they are if you want to cut/paste it for a look see. I used the sizes you specified. But you could easily adapt this to have one or more of the divs grow so they're all equal sizes or change depending on the screen size.
确保所有列 div 都使用:
Make sure all the column divs are using:
这是您问题的解决方案:
http://jsfiddle.net/uZx4L/3/
Here is a solution to your question:
http://jsfiddle.net/uZx4L/3/