grid alignment - vertical alignment. How to make columns with equal height?












1















I have a page (see attachment) vertical alignment



You can see that the button from the right is not aligned with the other on the left (due to the text above having less lines)



How can I make the button go down and be aligned with the one on the left?
I have tried "align-items, flex-end, display: bottom, etc etc" but I don't understand coding. I am not sure if it's about the grid layout or I may need to make a wrapped around the button...



Thank you for your help!






.btn-add-to-cart {
margin: 0 auto;
}

<div class="grid__item grid-product {{ grid_item_width }}{% if sold_out %} is-sold-out{% endif %}">
<div class="grid-product__wrapper">
<div class="grid-product__image-wrapper">
<a class="grid-product__image-link" href="{{ product.url | within: collection }}">
{% if product.featured_image.src == blank %}
<img class="grid-product__image" src="{{ product.featured_image.src | img_url: '1024x' }}" alt="{{ product.featured_image.alt | escape }}">
{% else %}
<div class="reveal">

{% include 'image-style' with image: product.featured_image, small_style: true, width: width, height: height, wrapper_id: img_wrapper_id, img_id_class: img_id_class %}
<div id="{{ img_wrapper_id }}" class="product--wrapper">
<div style="padding-bottom:{{ 1 | divided_by: product.featured_image.aspect_ratio | times: 100 }}%;">
<img class="product--image lazyload {{ img_id_class }}"
src="{{ product.featured_image | img_url: '150x150' }}"
data-src="{{ img_url }}"
data-widths="[180, 370, 590, 740, 900, 1080, 1296, 1512, 1728, 2048]"
data-aspectratio="{{ product.featured_image.aspect_ratio }}"
data-sizes="auto"
alt="{{ product.featured_image.alt | escape }}">
<img class="hidden" src="{{ product.images.last | img_url: 'grande' }}" alt="{{ product.images.last.alt | escape }}" />


</div>
</div>
</div>

<noscript>
<img class="grid-product__image" src="{{ product.featured_image.src | img_url: 'grande' }}" alt="{{ product.featured_image.alt | escape }}">
</noscript>
{% endif %}
</a>
{% if sold_out %}
<div class="grid-product__sold-out">
<p>{{ 'products.product.sold_out_html' | t }}</p>
</div>
{% elsif on_sale %}
<div class="grid-product__on-sale">
{% capture discount_percentage %}{{ product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price |round }}%{% endcapture %}
<p>{{ 'products.general.save_html' | t: saved_amount: discount_percentage }}</p>
</div>
{% endif %}
</div>

<a href="{{ product.url | within: collection }}" class="grid-product__meta">
<span class="grid-product__title">{{ product.title }}</span>
<span class="grid-product__price-wrap">
<span class="long-dash">—</span>
<span class="grid-product__price">
{% if product.price_varies %}
{{ product.price_min | money_without_trailing_zeros }}
<span class="icon-fallback-text">
<span class="icon icon-plus grid-product__price-min" aria-hidden="true"></span>
<span class="fallback-text">+</span>
</span>
{% else %}
{{ product.price | money_without_trailing_zeros }}
{% endif %}
</span>

{% if on_sale %}
<span id="ComparePrice" class="product-single__price--compare-at">{{ product.compare_at_price | money }}</span>
<span class="visually-hidden">{{ 'products.general.sale_price' | t }}</span>
{% else %}
<span class="visually-hidden">{{ 'products.general.regular_price' | t }}</span>
{% endif %}
</span>
</span>
{% if section.settings.product_vendor_enable %}
<p class="grid-product__vendor">{{ product.vendor }}</p>
{% endif %}

<form method="post" action="/cart/add">
<input type="hidden" name="id" value="{{ product.variants.first.id }}" />

<input type="submit" value="Add to bag" class="btn btn-add-to-cart" />
<input type="hidden" name="return_to" value="back" />
</form>
</a>
</div>
</div>





CSS:



enter code here.btn-add-to-cart {
margin: 0 auto;


}










share|improve this question





























    1















    I have a page (see attachment) vertical alignment



    You can see that the button from the right is not aligned with the other on the left (due to the text above having less lines)



    How can I make the button go down and be aligned with the one on the left?
    I have tried "align-items, flex-end, display: bottom, etc etc" but I don't understand coding. I am not sure if it's about the grid layout or I may need to make a wrapped around the button...



    Thank you for your help!






    .btn-add-to-cart {
    margin: 0 auto;
    }

    <div class="grid__item grid-product {{ grid_item_width }}{% if sold_out %} is-sold-out{% endif %}">
    <div class="grid-product__wrapper">
    <div class="grid-product__image-wrapper">
    <a class="grid-product__image-link" href="{{ product.url | within: collection }}">
    {% if product.featured_image.src == blank %}
    <img class="grid-product__image" src="{{ product.featured_image.src | img_url: '1024x' }}" alt="{{ product.featured_image.alt | escape }}">
    {% else %}
    <div class="reveal">

    {% include 'image-style' with image: product.featured_image, small_style: true, width: width, height: height, wrapper_id: img_wrapper_id, img_id_class: img_id_class %}
    <div id="{{ img_wrapper_id }}" class="product--wrapper">
    <div style="padding-bottom:{{ 1 | divided_by: product.featured_image.aspect_ratio | times: 100 }}%;">
    <img class="product--image lazyload {{ img_id_class }}"
    src="{{ product.featured_image | img_url: '150x150' }}"
    data-src="{{ img_url }}"
    data-widths="[180, 370, 590, 740, 900, 1080, 1296, 1512, 1728, 2048]"
    data-aspectratio="{{ product.featured_image.aspect_ratio }}"
    data-sizes="auto"
    alt="{{ product.featured_image.alt | escape }}">
    <img class="hidden" src="{{ product.images.last | img_url: 'grande' }}" alt="{{ product.images.last.alt | escape }}" />


    </div>
    </div>
    </div>

    <noscript>
    <img class="grid-product__image" src="{{ product.featured_image.src | img_url: 'grande' }}" alt="{{ product.featured_image.alt | escape }}">
    </noscript>
    {% endif %}
    </a>
    {% if sold_out %}
    <div class="grid-product__sold-out">
    <p>{{ 'products.product.sold_out_html' | t }}</p>
    </div>
    {% elsif on_sale %}
    <div class="grid-product__on-sale">
    {% capture discount_percentage %}{{ product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price |round }}%{% endcapture %}
    <p>{{ 'products.general.save_html' | t: saved_amount: discount_percentage }}</p>
    </div>
    {% endif %}
    </div>

    <a href="{{ product.url | within: collection }}" class="grid-product__meta">
    <span class="grid-product__title">{{ product.title }}</span>
    <span class="grid-product__price-wrap">
    <span class="long-dash">—</span>
    <span class="grid-product__price">
    {% if product.price_varies %}
    {{ product.price_min | money_without_trailing_zeros }}
    <span class="icon-fallback-text">
    <span class="icon icon-plus grid-product__price-min" aria-hidden="true"></span>
    <span class="fallback-text">+</span>
    </span>
    {% else %}
    {{ product.price | money_without_trailing_zeros }}
    {% endif %}
    </span>

    {% if on_sale %}
    <span id="ComparePrice" class="product-single__price--compare-at">{{ product.compare_at_price | money }}</span>
    <span class="visually-hidden">{{ 'products.general.sale_price' | t }}</span>
    {% else %}
    <span class="visually-hidden">{{ 'products.general.regular_price' | t }}</span>
    {% endif %}
    </span>
    </span>
    {% if section.settings.product_vendor_enable %}
    <p class="grid-product__vendor">{{ product.vendor }}</p>
    {% endif %}

    <form method="post" action="/cart/add">
    <input type="hidden" name="id" value="{{ product.variants.first.id }}" />

    <input type="submit" value="Add to bag" class="btn btn-add-to-cart" />
    <input type="hidden" name="return_to" value="back" />
    </form>
    </a>
    </div>
    </div>





    CSS:



    enter code here.btn-add-to-cart {
    margin: 0 auto;


    }










    share|improve this question



























      1












      1








      1








      I have a page (see attachment) vertical alignment



      You can see that the button from the right is not aligned with the other on the left (due to the text above having less lines)



      How can I make the button go down and be aligned with the one on the left?
      I have tried "align-items, flex-end, display: bottom, etc etc" but I don't understand coding. I am not sure if it's about the grid layout or I may need to make a wrapped around the button...



      Thank you for your help!






      .btn-add-to-cart {
      margin: 0 auto;
      }

      <div class="grid__item grid-product {{ grid_item_width }}{% if sold_out %} is-sold-out{% endif %}">
      <div class="grid-product__wrapper">
      <div class="grid-product__image-wrapper">
      <a class="grid-product__image-link" href="{{ product.url | within: collection }}">
      {% if product.featured_image.src == blank %}
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: '1024x' }}" alt="{{ product.featured_image.alt | escape }}">
      {% else %}
      <div class="reveal">

      {% include 'image-style' with image: product.featured_image, small_style: true, width: width, height: height, wrapper_id: img_wrapper_id, img_id_class: img_id_class %}
      <div id="{{ img_wrapper_id }}" class="product--wrapper">
      <div style="padding-bottom:{{ 1 | divided_by: product.featured_image.aspect_ratio | times: 100 }}%;">
      <img class="product--image lazyload {{ img_id_class }}"
      src="{{ product.featured_image | img_url: '150x150' }}"
      data-src="{{ img_url }}"
      data-widths="[180, 370, 590, 740, 900, 1080, 1296, 1512, 1728, 2048]"
      data-aspectratio="{{ product.featured_image.aspect_ratio }}"
      data-sizes="auto"
      alt="{{ product.featured_image.alt | escape }}">
      <img class="hidden" src="{{ product.images.last | img_url: 'grande' }}" alt="{{ product.images.last.alt | escape }}" />


      </div>
      </div>
      </div>

      <noscript>
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: 'grande' }}" alt="{{ product.featured_image.alt | escape }}">
      </noscript>
      {% endif %}
      </a>
      {% if sold_out %}
      <div class="grid-product__sold-out">
      <p>{{ 'products.product.sold_out_html' | t }}</p>
      </div>
      {% elsif on_sale %}
      <div class="grid-product__on-sale">
      {% capture discount_percentage %}{{ product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price |round }}%{% endcapture %}
      <p>{{ 'products.general.save_html' | t: saved_amount: discount_percentage }}</p>
      </div>
      {% endif %}
      </div>

      <a href="{{ product.url | within: collection }}" class="grid-product__meta">
      <span class="grid-product__title">{{ product.title }}</span>
      <span class="grid-product__price-wrap">
      <span class="long-dash">—</span>
      <span class="grid-product__price">
      {% if product.price_varies %}
      {{ product.price_min | money_without_trailing_zeros }}
      <span class="icon-fallback-text">
      <span class="icon icon-plus grid-product__price-min" aria-hidden="true"></span>
      <span class="fallback-text">+</span>
      </span>
      {% else %}
      {{ product.price | money_without_trailing_zeros }}
      {% endif %}
      </span>

      {% if on_sale %}
      <span id="ComparePrice" class="product-single__price--compare-at">{{ product.compare_at_price | money }}</span>
      <span class="visually-hidden">{{ 'products.general.sale_price' | t }}</span>
      {% else %}
      <span class="visually-hidden">{{ 'products.general.regular_price' | t }}</span>
      {% endif %}
      </span>
      </span>
      {% if section.settings.product_vendor_enable %}
      <p class="grid-product__vendor">{{ product.vendor }}</p>
      {% endif %}

      <form method="post" action="/cart/add">
      <input type="hidden" name="id" value="{{ product.variants.first.id }}" />

      <input type="submit" value="Add to bag" class="btn btn-add-to-cart" />
      <input type="hidden" name="return_to" value="back" />
      </form>
      </a>
      </div>
      </div>





      CSS:



      enter code here.btn-add-to-cart {
      margin: 0 auto;


      }










      share|improve this question
















      I have a page (see attachment) vertical alignment



      You can see that the button from the right is not aligned with the other on the left (due to the text above having less lines)



      How can I make the button go down and be aligned with the one on the left?
      I have tried "align-items, flex-end, display: bottom, etc etc" but I don't understand coding. I am not sure if it's about the grid layout or I may need to make a wrapped around the button...



      Thank you for your help!






      .btn-add-to-cart {
      margin: 0 auto;
      }

      <div class="grid__item grid-product {{ grid_item_width }}{% if sold_out %} is-sold-out{% endif %}">
      <div class="grid-product__wrapper">
      <div class="grid-product__image-wrapper">
      <a class="grid-product__image-link" href="{{ product.url | within: collection }}">
      {% if product.featured_image.src == blank %}
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: '1024x' }}" alt="{{ product.featured_image.alt | escape }}">
      {% else %}
      <div class="reveal">

      {% include 'image-style' with image: product.featured_image, small_style: true, width: width, height: height, wrapper_id: img_wrapper_id, img_id_class: img_id_class %}
      <div id="{{ img_wrapper_id }}" class="product--wrapper">
      <div style="padding-bottom:{{ 1 | divided_by: product.featured_image.aspect_ratio | times: 100 }}%;">
      <img class="product--image lazyload {{ img_id_class }}"
      src="{{ product.featured_image | img_url: '150x150' }}"
      data-src="{{ img_url }}"
      data-widths="[180, 370, 590, 740, 900, 1080, 1296, 1512, 1728, 2048]"
      data-aspectratio="{{ product.featured_image.aspect_ratio }}"
      data-sizes="auto"
      alt="{{ product.featured_image.alt | escape }}">
      <img class="hidden" src="{{ product.images.last | img_url: 'grande' }}" alt="{{ product.images.last.alt | escape }}" />


      </div>
      </div>
      </div>

      <noscript>
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: 'grande' }}" alt="{{ product.featured_image.alt | escape }}">
      </noscript>
      {% endif %}
      </a>
      {% if sold_out %}
      <div class="grid-product__sold-out">
      <p>{{ 'products.product.sold_out_html' | t }}</p>
      </div>
      {% elsif on_sale %}
      <div class="grid-product__on-sale">
      {% capture discount_percentage %}{{ product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price |round }}%{% endcapture %}
      <p>{{ 'products.general.save_html' | t: saved_amount: discount_percentage }}</p>
      </div>
      {% endif %}
      </div>

      <a href="{{ product.url | within: collection }}" class="grid-product__meta">
      <span class="grid-product__title">{{ product.title }}</span>
      <span class="grid-product__price-wrap">
      <span class="long-dash">—</span>
      <span class="grid-product__price">
      {% if product.price_varies %}
      {{ product.price_min | money_without_trailing_zeros }}
      <span class="icon-fallback-text">
      <span class="icon icon-plus grid-product__price-min" aria-hidden="true"></span>
      <span class="fallback-text">+</span>
      </span>
      {% else %}
      {{ product.price | money_without_trailing_zeros }}
      {% endif %}
      </span>

      {% if on_sale %}
      <span id="ComparePrice" class="product-single__price--compare-at">{{ product.compare_at_price | money }}</span>
      <span class="visually-hidden">{{ 'products.general.sale_price' | t }}</span>
      {% else %}
      <span class="visually-hidden">{{ 'products.general.regular_price' | t }}</span>
      {% endif %}
      </span>
      </span>
      {% if section.settings.product_vendor_enable %}
      <p class="grid-product__vendor">{{ product.vendor }}</p>
      {% endif %}

      <form method="post" action="/cart/add">
      <input type="hidden" name="id" value="{{ product.variants.first.id }}" />

      <input type="submit" value="Add to bag" class="btn btn-add-to-cart" />
      <input type="hidden" name="return_to" value="back" />
      </form>
      </a>
      </div>
      </div>





      CSS:



      enter code here.btn-add-to-cart {
      margin: 0 auto;


      }






      .btn-add-to-cart {
      margin: 0 auto;
      }

      <div class="grid__item grid-product {{ grid_item_width }}{% if sold_out %} is-sold-out{% endif %}">
      <div class="grid-product__wrapper">
      <div class="grid-product__image-wrapper">
      <a class="grid-product__image-link" href="{{ product.url | within: collection }}">
      {% if product.featured_image.src == blank %}
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: '1024x' }}" alt="{{ product.featured_image.alt | escape }}">
      {% else %}
      <div class="reveal">

      {% include 'image-style' with image: product.featured_image, small_style: true, width: width, height: height, wrapper_id: img_wrapper_id, img_id_class: img_id_class %}
      <div id="{{ img_wrapper_id }}" class="product--wrapper">
      <div style="padding-bottom:{{ 1 | divided_by: product.featured_image.aspect_ratio | times: 100 }}%;">
      <img class="product--image lazyload {{ img_id_class }}"
      src="{{ product.featured_image | img_url: '150x150' }}"
      data-src="{{ img_url }}"
      data-widths="[180, 370, 590, 740, 900, 1080, 1296, 1512, 1728, 2048]"
      data-aspectratio="{{ product.featured_image.aspect_ratio }}"
      data-sizes="auto"
      alt="{{ product.featured_image.alt | escape }}">
      <img class="hidden" src="{{ product.images.last | img_url: 'grande' }}" alt="{{ product.images.last.alt | escape }}" />


      </div>
      </div>
      </div>

      <noscript>
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: 'grande' }}" alt="{{ product.featured_image.alt | escape }}">
      </noscript>
      {% endif %}
      </a>
      {% if sold_out %}
      <div class="grid-product__sold-out">
      <p>{{ 'products.product.sold_out_html' | t }}</p>
      </div>
      {% elsif on_sale %}
      <div class="grid-product__on-sale">
      {% capture discount_percentage %}{{ product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price |round }}%{% endcapture %}
      <p>{{ 'products.general.save_html' | t: saved_amount: discount_percentage }}</p>
      </div>
      {% endif %}
      </div>

      <a href="{{ product.url | within: collection }}" class="grid-product__meta">
      <span class="grid-product__title">{{ product.title }}</span>
      <span class="grid-product__price-wrap">
      <span class="long-dash">—</span>
      <span class="grid-product__price">
      {% if product.price_varies %}
      {{ product.price_min | money_without_trailing_zeros }}
      <span class="icon-fallback-text">
      <span class="icon icon-plus grid-product__price-min" aria-hidden="true"></span>
      <span class="fallback-text">+</span>
      </span>
      {% else %}
      {{ product.price | money_without_trailing_zeros }}
      {% endif %}
      </span>

      {% if on_sale %}
      <span id="ComparePrice" class="product-single__price--compare-at">{{ product.compare_at_price | money }}</span>
      <span class="visually-hidden">{{ 'products.general.sale_price' | t }}</span>
      {% else %}
      <span class="visually-hidden">{{ 'products.general.regular_price' | t }}</span>
      {% endif %}
      </span>
      </span>
      {% if section.settings.product_vendor_enable %}
      <p class="grid-product__vendor">{{ product.vendor }}</p>
      {% endif %}

      <form method="post" action="/cart/add">
      <input type="hidden" name="id" value="{{ product.variants.first.id }}" />

      <input type="submit" value="Add to bag" class="btn btn-add-to-cart" />
      <input type="hidden" name="return_to" value="back" />
      </form>
      </a>
      </div>
      </div>





      .btn-add-to-cart {
      margin: 0 auto;
      }

      <div class="grid__item grid-product {{ grid_item_width }}{% if sold_out %} is-sold-out{% endif %}">
      <div class="grid-product__wrapper">
      <div class="grid-product__image-wrapper">
      <a class="grid-product__image-link" href="{{ product.url | within: collection }}">
      {% if product.featured_image.src == blank %}
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: '1024x' }}" alt="{{ product.featured_image.alt | escape }}">
      {% else %}
      <div class="reveal">

      {% include 'image-style' with image: product.featured_image, small_style: true, width: width, height: height, wrapper_id: img_wrapper_id, img_id_class: img_id_class %}
      <div id="{{ img_wrapper_id }}" class="product--wrapper">
      <div style="padding-bottom:{{ 1 | divided_by: product.featured_image.aspect_ratio | times: 100 }}%;">
      <img class="product--image lazyload {{ img_id_class }}"
      src="{{ product.featured_image | img_url: '150x150' }}"
      data-src="{{ img_url }}"
      data-widths="[180, 370, 590, 740, 900, 1080, 1296, 1512, 1728, 2048]"
      data-aspectratio="{{ product.featured_image.aspect_ratio }}"
      data-sizes="auto"
      alt="{{ product.featured_image.alt | escape }}">
      <img class="hidden" src="{{ product.images.last | img_url: 'grande' }}" alt="{{ product.images.last.alt | escape }}" />


      </div>
      </div>
      </div>

      <noscript>
      <img class="grid-product__image" src="{{ product.featured_image.src | img_url: 'grande' }}" alt="{{ product.featured_image.alt | escape }}">
      </noscript>
      {% endif %}
      </a>
      {% if sold_out %}
      <div class="grid-product__sold-out">
      <p>{{ 'products.product.sold_out_html' | t }}</p>
      </div>
      {% elsif on_sale %}
      <div class="grid-product__on-sale">
      {% capture discount_percentage %}{{ product.compare_at_price | minus: product.price | times: 100 | divided_by: product.compare_at_price |round }}%{% endcapture %}
      <p>{{ 'products.general.save_html' | t: saved_amount: discount_percentage }}</p>
      </div>
      {% endif %}
      </div>

      <a href="{{ product.url | within: collection }}" class="grid-product__meta">
      <span class="grid-product__title">{{ product.title }}</span>
      <span class="grid-product__price-wrap">
      <span class="long-dash">—</span>
      <span class="grid-product__price">
      {% if product.price_varies %}
      {{ product.price_min | money_without_trailing_zeros }}
      <span class="icon-fallback-text">
      <span class="icon icon-plus grid-product__price-min" aria-hidden="true"></span>
      <span class="fallback-text">+</span>
      </span>
      {% else %}
      {{ product.price | money_without_trailing_zeros }}
      {% endif %}
      </span>

      {% if on_sale %}
      <span id="ComparePrice" class="product-single__price--compare-at">{{ product.compare_at_price | money }}</span>
      <span class="visually-hidden">{{ 'products.general.sale_price' | t }}</span>
      {% else %}
      <span class="visually-hidden">{{ 'products.general.regular_price' | t }}</span>
      {% endif %}
      </span>
      </span>
      {% if section.settings.product_vendor_enable %}
      <p class="grid-product__vendor">{{ product.vendor }}</p>
      {% endif %}

      <form method="post" action="/cart/add">
      <input type="hidden" name="id" value="{{ product.variants.first.id }}" />

      <input type="submit" value="Add to bag" class="btn btn-add-to-cart" />
      <input type="hidden" name="return_to" value="back" />
      </form>
      </a>
      </div>
      </div>






      html css gridview wrapper vertical-alignment






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 20 '18 at 21:31









      Temani Afif

      70.3k93876




      70.3k93876










      asked Nov 20 '18 at 20:06









      AlexAlex

      61




      61
























          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53400740%2fgrid-alignment-vertical-alignment-how-to-make-columns-with-equal-height%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53400740%2fgrid-alignment-vertical-alignment-how-to-make-columns-with-equal-height%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

          Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

          A Topological Invariant for $pi_3(U(n))$