hi,
weiß einer wieso meine Box aufeinmal eine längere Breite hat als die anderen?
Siehe Bild:
Spoiler anzeigen
HTML
Spoiler anzeigen
CSS:
Spoiler anzeigen
Code
		
					
				main .post-list-item {
    display:flex;
    display:-webkit-flex;
    display:-moz-box;
    display:-ms-flexbox;
    justify-content: space-around;
    flex-flow: row wrap;
    margin:0 auto;
    text-align:center;
    width:100%;
    background:#eee;
}
main #all-post .flex-flex {
    flex-basis: 70%;
    flex-grow: 0;
    flex-shrink: 1;
    background: #fff;
    margin-top: 2em;
    margin-bottom: 2em;
    text-align: center;
    vertical-align: top;
    border:1px solid #e5e5e5;
    padding-left:12px;
    padding-right:12px;
    padding-bottom:12px;
    background:#fff;
}
main #all-post .flex-flex .main-flex p {
    font-family:'Roboto',sans-serif;
    font-weight:400;
    color:#444;
    word-wrap:break-word;
    text-align:justify;
} 
		