Reputation: 880
Sorry for the bad title, I am not sure how to explain my problem better. Please feel free to change it into something better.
Furthermore I am new to flexboxes which makes it harder to track down my problem. So I set up a JSFiddle to show my problem.
/* Layout */
#pagecontentwrapper {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100%;
padding: 25px;
}
/* Inhalte */
#flexcontainer {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
/* Flex */
.rowParent,
.columnParent {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-direction: normal;
-webkit-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.columnParent {
-webkit-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.flexMother {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
}
.flexChild {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
display: flex;
}
.topflex {
-webkit-align-self: flex-start;
-ms-flex-item-align: flex-start;
align-self: flex-start;
width: 100%;
}
.bottomflex {
-webkit-align-self: flex-end;
-ms-flex-item-align: flex-end;
align-self: flex-end;
}
#aktuelles {
border: 1px solid #004985;
}
#besucher,
#raumplan,
#media,
#topnews,
#technik {
border: 1px solid #a0a0a0;
}
#besucher,
#raumplan,
#topnews {
margin-bottom: 35px;
}
#aktuelles {
margin-right: 25px;
}
#besucher,
#raumplan,
#media {
margin-right: 12px;
}
#topnews,
#technik {
margin-left: 13px;
}
article.news_front {
padding: 20px;
}
article.news_front:last-of-type {
margin-bottom: 0;
}
article.news_front:last-of-type section {
border-bottom: none;
}
article.news_front section {
border-bottom: 1px solid #004985;
}
article.news_front section p:first-of-type {
display: inline;
}
article.besucher_front section {
margin-left: 45px;
}
.topflex {
background-color: red;
}
.bottomflex {
background-color: grey;
}
<div id="pagecontentwrapper">
<div id="flexcontainer" class="flexMother rowParent">
<div id="aktuelles" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Aktuelles</h1>
<article class="news_front">
<section><span class="posttime">13. 11. 2014, 16:09 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
<article class="news_front">
<section><span class="posttime">13. 11. 2014, 12:00 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
<article class="news_front">
<section><span class="posttime">13. 11. 2014, 8:15 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
</div>
<div class="bottomflex">Historie</div>
</div>
<div id="rechtehaelfte" class="flexChild rowParent">
<div id="mittlerespalte" class="flexChild columnParent">
<div id="besucher" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Besucher</h1>
<article class="besucher_front">
<p>Für heute sind keine Besucher eingetragen.</p>
</article>
</div>
<div class="bottomflex"> </div>
</div>
<div id="raumplan" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Raumplan</h1>
<article class="besucher_front">
<p>Für heute ist keine Raumbelegung eingetragen.</p>
</article>
</div>
<div class="bottomflex"> </div>
</div>
<div id="media" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Media</h1>
<p>image here</p>
</div>
</div>
</div>
<div id="rechtespalte" class="flexChild columnParent">
<div id="topnews" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Top-News</h1>
<article class="topnews_front">
<section>
<p>Lorem ipsum...</p>
</section>
</article>
</div>
<div class="bottomflex" id="topnews_historie">Historie</div>
</div>
<div id="technik" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Technik</h1>
<article class="news_front">
<section><span class="posttime">3. 1. 2015, 21:36 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
</div>
<div class="bottomflex" id="technik_historie">Historie</div>
</div>
</div>
</div>
</div>
</div>
What I want to achieve is, that the .bottomflex-container
is positioned under the .topflex-container
, not next to it like it happens.
I can, temporarily, achieve that effect, when I set
flex-direction: column;
to the .flexChild
. But then I lose the behaviour, that my .bottomflex-container
sits at the bottom of the surrounding box and I understand why that happens.
I am not sure if I am trying to do something impossible and need to do it different, or if I'm just missing some lines of code.
Upvotes: 2
Views: 16925
Reputation: 288510
The flex items are displayed one next to the other because, by default, flex-wrap
is set to nowrap
, so the children are forced into a single.
In order to allow the flex items break into multiple lines, you can use
.flexChild {
flex-wrap: wrap;
}
/* Layout */
#pagecontentwrapper {
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
min-height: 100%;
padding: 25px;
}
/* Inhalte */
#flexcontainer {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
/* Flex */
.rowParent,
.columnParent {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-direction: normal;
-webkit-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.columnParent {
-webkit-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.flexMother {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
}
.flexChild {
-webkit-box-flex: 1;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
-webkit-align-self: auto;
-ms-flex-item-align: auto;
align-self: auto;
display: flex;
flex-wrap: wrap;
}
.topflex {
-webkit-align-self: flex-start;
-ms-flex-item-align: flex-start;
align-self: flex-start;
width: 100%;
}
.bottomflex {
-webkit-align-self: flex-end;
-ms-flex-item-align: flex-end;
align-self: flex-end;
}
#aktuelles {
border: 1px solid #004985;
}
#besucher,
#raumplan,
#media,
#topnews,
#technik {
border: 1px solid #a0a0a0;
}
#besucher,
#raumplan,
#topnews {
margin-bottom: 35px;
}
#aktuelles {
margin-right: 25px;
}
#besucher,
#raumplan,
#media {
margin-right: 12px;
}
#topnews,
#technik {
margin-left: 13px;
}
article.news_front {
padding: 20px;
}
article.news_front:last-of-type {
margin-bottom: 0;
}
article.news_front:last-of-type section {
border-bottom: none;
}
article.news_front section {
border-bottom: 1px solid #004985;
}
article.news_front section p:first-of-type {
display: inline;
}
article.besucher_front section {
margin-left: 45px;
}
.topflex {
background-color: red;
}
.bottomflex {
background-color: grey;
}
<div id="pagecontentwrapper">
<div id="flexcontainer" class="flexMother rowParent">
<div id="aktuelles" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Aktuelles</h1>
<article class="news_front">
<section><span class="posttime">13. 11. 2014, 16:09 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
<article class="news_front">
<section><span class="posttime">13. 11. 2014, 12:00 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
<article class="news_front">
<section><span class="posttime">13. 11. 2014, 8:15 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
</div>
<div class="bottomflex">Historie</div>
</div>
<div id="rechtehaelfte" class="flexChild rowParent">
<div id="mittlerespalte" class="flexChild columnParent">
<div id="besucher" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Besucher</h1>
<article class="besucher_front">
<p>Für heute sind keine Besucher eingetragen.</p>
</article>
</div>
<div class="bottomflex"> </div>
</div>
<div id="raumplan" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Raumplan</h1>
<article class="besucher_front">
<p>Für heute ist keine Raumbelegung eingetragen.</p>
</article>
</div>
<div class="bottomflex"> </div>
</div>
<div id="media" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Media</h1>
<p>image here</p>
</div>
</div>
</div>
<div id="rechtespalte" class="flexChild columnParent">
<div id="topnews" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Top-News</h1>
<article class="topnews_front">
<section>
<p>Lorem ipsum...</p>
</section>
</article>
</div>
<div class="bottomflex" id="topnews_historie">Historie</div>
</div>
<div id="technik" class="flexChild">
<div class="topflex">
<h1 class="frontpage">Technik</h1>
<article class="news_front">
<section><span class="posttime">3. 1. 2015, 21:36 Uhr</span>
<p>Lorem ipsum...</p>
</section>
</article>
</div>
<div class="bottomflex" id="technik_historie">Historie</div>
</div>
</div>
</div>
</div>
</div>
Upvotes: 5
Reputation: 43105
You can either use flex-direction:column;
and combine it with justify-content: space-between;
or use a multiline flexbox via flex-wrap: wrap;
Upvotes: 3