I got a couple of columns created with bootstrap for a footer. Each column has some info in them (i.e: address, links etc). But a column with more information in it than the other, will be longer, so all the columns are not evenly lined out. How can I fix this?
My footer:
<div class="row row-centered">
                        <div class="col-md-2 col-centered col-centered">
                            <!-- Address -->
                                <div class="" style="padding-right:0">
                                    <div class="contact-item">
                                        <div class="ci-icon">
                                            <i class="fa fa-building-o"></i>
                                        </div>
                                        <div class="ci-title font-alt">
                                            Markten
                                        </div>
                                        <div class="ci-text">
                                            Website B.V.<br>
                                            Overkampsweg 16a<br>
                                            8102 PH Raalte
                                        </div>
                                    </div>
                                </div>
                                <!-- End Address -->
                        </div>
                        <div class="col-md-2 col-centered">
                            <!-- Address -->
                                <div class="" style="padding-right:0">
                                    <div class="contact-item">
                                        <div class="ci-icon">
                                            <i class="fa fa-cube"></i>
                                        </div>
                                        <div class="ci-title font-alt">
                                            Producten
                                        </div>
                                        <div class="ci-text">
                                            <a href="http://www.website.nl/filtering.html">Filtering</a><br>
                                            <a href="http://www.website.nl/toebehoren.html">Toebehoren</a><br>
                                            <a href="http://wwww.website.nl/zacht.html">Zacht</a>
                                            <a href="http://www.website.nl/hard.html">Hard</a>
                                            <a href="http://www.website.nl/technische-gegevens.html">Technische gegevens</a>
                                        </div>
                                    </div>
                                </div>
                                <!-- End Address -->
                        </div>
                        <div class="col-md-2 col-centered">
                            <!-- Address -->
                                <div class="" style="padding-right:0">
                                    <div class="contact-item">
                                        <div class="ci-icon">
                                            <i class="fa fa-check"></i>
                                        </div>
                                        <div class="ci-title font-alt">
                                            Diensten
                                        </div>
                                        <div class="ci-text">
                                            Website B.V.<br>
                                            Overkampsweg 16a<br>
                                            8102 PH Raalte
                                        </div>
                                    </div>
                                </div>
                                <!-- End Address -->
                        </div>
                        <div class="col-md-2 col-centered">
                            <!-- Address -->
                                <div class="" style="padding-right:0">
                                    <div class="contact-item">
                                        <div class="ci-icon">
                                            <i class="fa fa-external-link"></i>
                                        </div>
                                        <div class="ci-title font-alt">
                                            Links
                                        </div>
                                        <div class="ci-text">
                                            Link 1<br>
                                            Link 2<br>
                                            Link 3
                                        </div>
                                    </div>
                                </div>
                                <!-- End Address -->
                        </div>
                        <div class="col-md-2 col-centered">
                            <!-- Address -->
                                <div class="" style="padding-right:0">
                                    <div class="contact-item">
                                        <div class="ci-icon">
                                            <i class="fa fa-map-marker"></i>
                                        </div>
                                        <div class="ci-title font-alt">
                                            Adresgegevens
                                        </div>
                                        <div class="ci-text">
                                            Website B.V.<br>
                                            Overkampsweg 16a<br>
                                            8102 PH Raalte
                                        </div>
                                    </div>
                                </div>
                                <!-- End Address -->
                        </div>
                    </div>
With css:
/* centered columns styles */
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
}
.row-centered {
    text-align: center;
    margin-bottom: 40px;
}
Jsfiddle:
 
     
    