我对CSS中的网格布局有点迷惑。我有一个包装器(1000px宽),并希望将div放在float:left;
和每个之间的23px的边距。使用:nth-child
选择器可以轻松实现这一点。但是现在我在左上角有一个文本块,其高度是可变的,网格项的数量也是可变的。
所以我将文本块的right-margin
和网格项设置为23px。但是当最右边的网格元素具有23px right-margin
时,它会断开到下一行。
我不能在这里使用nth-child
因为我不知道,两件物品中有多少行以及我将获得三件物品中的多少件。
我希望我的问题只有一个CSS解决方案。
更新
这是一个小提琴,显示了我的尝试:jsfiddle.net
这是我的布局应该如何:
+-------------------------------------------+
|+---------------+ +----------+ +----------+|
|| | | | | ||
|| | | | | ||
|| | | | | ||
|| | +----------+ +----------+|
|| Textblock | +----------+ +----------+|
|| | | | | ||
|| | | | | ||
|| | | | | ||
|+---------------+ +----------+ +----------+|
|+----------+ ^ ^ ^|
|| | (margin) (margin) (no margin)
|| | |
|| | |
|+----------+ |
+-------------------------------------------+
^
(no margin)
答案 0 :(得分:1)
您可以执行以下操作:http://codepen.io/pageaffairs/pen/svxLg
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
.float, .boxes div {background: #f7f7f7; }
.wrap {width: 1000px; margin: 0 auto; padding: 20px 0; background: #30353b;}
.float {float: left; width: 476px; height: 440px; margin: 0 23px 23px 0;}
.boxes {text-align: justify;}
.boxes div {width: 238px; height: 238px; display: inline-block;}
.boxes:after {content: ''; width: 100%; display: inline-block;}
</style>
</head>
<body>
<div class="wrap">
<div class="float"></div>
<div class="boxes">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</body>
</html>
我前几天从另一个conversation获得了这个解决方案,其中引用了将inline-block
元素设置为text-align: justify
的非常方便的技巧:http://www.barrelny.com/blog/text-align-justify-and-rwd/
以下是具有不同尺寸的另一个版本:http://codepen.io/pageaffairs/pen/JrqIf
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
.float {background: #ccc;}
.boxes div {background: #f7f7f7; }
.wrap {width: 1000px; margin: 0 auto; padding: 20px 0; background: #30353b;}
.float {float: left; width: 318px; height: 400px; margin: 0 23px 23px 0;}
.boxes {text-align: justify;}
.boxes div {width: 318px; height: 200px; margin-bottom: 23px; display: inline-block;}
.boxes:after {content: ''; width: 100%; display: inline-block;}
</style>
</head>
<body>
<div class="wrap">
<div class="float"></div>
<div class="boxes">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</body>
</html>
编辑:我发现你现在已经发布了一个例子,所以这个例子适用于你的代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
#main {
width:1000px;
position:relative;
background-color:rgb(88, 88, 88);
}
#welcometext {
float: left;
width:318px;
margin-right:23px;
}
#welcometext p {
width:100%;
margin-top:30px;
}
.navelement {
width:318px;
height:189px;
overflow:hidden;
margin-top:40px;
border-radius:10px;
background-color:white;
display: inline-block;
}
.nav-wrap {text-align: justify;}
.nav-wrap:after {content: ''; width: 100%; display: inline-block;}
</style>
</head>
<body>
<div id="main">
<div id="welcometext">
<p>aximinctus incte pa idis sequati velit exero to tem si disci- enderi doloressit odi reptatum dolorrum et et autet aliti- assi rerio corum hitius am quidelibus. 318 px giatemporro esequam, eicias arum doleni vidis pre pa do- lupti orerum qui doluptatiam, voluptae conseritaque sita [...] imuscimin ne niendit.</p>
</div>
<div class="nav-wrap">
<div class="navelement">
</div>
<div class="navelement">
</div>
<div class="navelement">
</div>
</div>
</div>
</body>
</html>