-1

I have mobile screen that look like this:enter image description here

I want all the icons of the phone to be aligned so that they stand below each other.
I use grid system of bootstrap.
How can iI do this?

Tzof
  • 193
  • 12

1 Answers1

0

One way to do so is using grid system, for example you can do something like:

<div class="row">
    <div class="col-2">ICON1</div>
    <div class="col-10">TEXT1</div>
</div>
<div class="row">
    <div class="col-2">ICON2</div>
    <div class="col-10">TEXT2</div>
</div>
JustinasT
  • 561
  • 1
  • 8
  • 27