I m trying to create a 3 column div which should have equal height for all the responsive/rows which contain a ICON and a information
<div class="container">
<div class="row row-eq-height">
<div class="col col-4 border">
<i class="fas fa-home fa-5x"></i>
<span>Column1</span>
</div>
<div class="col col-4 border">
<i class="fas fa-file-invoice fa-5x"></i>
<span>Column2</span>
</div>
<div class="col col-4 border">
<i class="fas fa-exchange-alt fa-5x"></i>
<span>Column3</span>
</div>
<div class="col col-4 border">
<i class="fas fa-gamepad fa-5x"></i>
<span>Column4</span>
</div>
<div class="col col-4 border">
<i class="fas fa-users fa-5x"></i>
<span>Column5</span>
</div>
<div class="col col-4 border">Column6</div>
<div class="col col-4 border">Column7</div>
<div class="col col-4 border">Column8</div>
<div class="col col-4 border">Column9</div>
<div class="col col-4 border">Column10</div>
</div>
</div>
div height depend on the Icon size of the particular row only
I want all the height equal even if there is no IconIcon size is fixed to fa-5x
how can i change the size of the icon according to the browser size.
example sm-3x, md-4x, lg-5x, xl-6xIcon and text align
I want to put the text just below ICON, with both the ICON and text in Horizontal and Vertical centre.