I am building a Flask app and I am having some troubles with one of the HTML-templates. What I want to do is a sort of 3x3 tile layout for news stories, all tiles of equal height and width. This is my html code:
{% extends "base.html" %}
{% block app_content %}
<div class = "col-lg-12 row.row-eq-height text-left">
    <div class = "col-lg-4">
      {% for result in results[:3] %}
        {% include '_result.html' %}
      {%endfor %}
      </div>
    <div class = "col-lg-4">
      {% for result in results[3:6] %}
        {% include '_result.html' %}
      {%endfor %}
    </div>
    <div class = "col-lg-4">
      {% for result in results[6:9] %}
        {% include '_result.html' %}
      {%endfor %}
    </div>
    </div>
  </div>
</div>
{% endblock %}
The problem is that I am getting three nice and evenly sized columns, but the rows are not of equal height. My guess is that it has to do with the nested columns (having col-lg-12 and then col-lg-4). Is there any way to get all the rows the same height?
 
    