I am using the bootstrap grid to build a layout. In this layout I have a page that displays questions and answers as a FAQ. I created one row with 3 columns of each 4 wide. I put paragraphs in them that contain the questions and answers. Now I have 13 of these paragraphs and a title div containing a logo and two headers.
Currently I'm using max height and padding on the divs to try to space them evenly but it's not working out everywhere and I am just curious to see if there is a more convenient way to divide these paragraphs since I think this is something that more people want to do.
So this is my current html;
<div class="row faq">
<div class="col-lg-4 lefttop">
<div class="faqtitle">
</div></div>
</div>
And this is my current css;
.faqcontainer {
margin-right:4%;
margin-top:2%;
}
.faq {
text-align: center;
font-size:18px;
}
.faq h3 {
font-size:22px;
padding-bottom:0px;
margin-bottom:0px;
font-weight:500;
}
.faq h1 {
margin-top:0px;
padding-top:0px;
font-size:50px;
color:#ee7d2f;
}
.faq p {
max-width:450px;
min-height:130px;
margin:0px auto;
text-align:left;
font-size:15px;
padding-top:30px;
}
.faq a {
color:#598edf;
background: none !important;
}
.faqtitle {
margin-top:0px;
padding-top:0px;
}
.faqtitle h2, h1 {
margin:0px;
padding:0px;
}
.numbers {
font-size:40px;
color:#598edf;
float:left;
padding-bottom:0px;
padding-right:6px;
font-weight:200;
}
.bigorange {
color:#ee7d2f;
font-size:70px;
font-weight:800;
}
.orange {
color:#ee7d2f;}
Now I tried looking into vertical-align auto but another question on stack showed this was not the way to go. Setting the same height and margin on everything is not possible either since some of the paragraphs are a little longer than other but this is compensated by the shorter paragraphs.
Could anyone give me a suggestion on a more convenient/better way to do this?
If you do not need IE9 and below support then I would recommend this method.
Column-count
is a great style to use when you want to make even columns.Here is how I did this,
I am putting only the
p
content inside of this parent. Theh1
and other content seem to get all screwy with the column count so only put what you want to be a column into the parent.Here is a JSFIDDLE to play with. You will need to do some extra styling because the margin/padding on the
p
tags is causing some slight issues.