我正在学习如何创建自适应网站并遇到以下问题: 我有两列(col-6)需要填满上栏(col-9)。 Col-9居中,我需要在col-9内部有两列(col-6)。 HTML:
<div class="row col-12 troeven-0">
<div class="col-container col-9 col-center-block troeven-1">
<div class="colom col-6 goedkoop">
<h2 class="troeven">
GOEDKOOP
</h2>
<img src="goedkoop.jpg" width="400" height="155" alt="goedkoop" />
</div>
<div class="colom col-6 responsive">
<h2 class="troeven">
RESPONSIVE
</h2>
<img src="goedkoop.jpg" width="400" height="155" alt="goedkoop" />
</div>
</div>
</div>
CSS:
@media only screen and (min-width: 768px) {
/* For desktop: op PC (of bij een minimum van 768px hebben alle kolommen onderstaande breedte*/
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
}
.troeven-0 {
height: auto;
}
.troeven-1 {
height: auto;
padding: 0px;
}
.goedkoop {
height: auto;
text-align: center;
padding: 30px;
background: red;
}
.responsive {
height: auto;
text-align: center;
padding: 30px;
background: blue;
}
彼此内部的列太多或列太少了吗?非常感谢帮助:)
答案 0 :(得分:0)
您可以使用Bootstrap来响应网页。在Bootstrap中,代码将是这样的:
<div class="row">
<div class="col-md-12">
<div class="row">
<div class="col-md-9 col-md-offset-3">
<div class="row">
<div class="col-md-6">
<h2 class="troeven">
GOEDKOOP
</h2>
<img src="goedkoop.jpg" width="400" height="155" alt="goedkoop"/>
</div>
<div class="col-md-6">
<h2 class="troeven">
RESPONSIVE
</h2>
<img src="goedkoop.jpg" width="400" height="155" alt="goedkoop"/>
</div>
</div>
</div>
</div>
</div>
</div>
您可以在this link中通过Bootstrap找到有关页面网格和响应式网页的大量有用信息。
答案 1 :(得分:0)
听起来你想让列填满外柱的宽度?
.goedkoop {
height: auto;
text-align: center;
padding: 30px;
background: red;
margin: auto;
text-align: center;
}
.responsive {
height: auto;
text-align: center;
padding: 30px;
background: blue;
margin: auto;
text-align: center;
}
添加保证金:自动;和text-align:center;应该解决问题。
答案 2 :(得分:0)
我发现了问题:我的col-container被错误地放了。我的愚蠢错误,无论如何都要感谢所有的帮助!