Check out this screenshot to see the issue I'm facing:
Here is the HTML code:
<div class="parent_process">
<div class="first_process"><img src="images/exprimer-besoin-telephonie.png"/><span style="width:18%">You fill out the form to express your need (approx 1 min)</span></div>
<div class="second_process"><img src="images/contacter-tous-les-vendeurs-autocommutateurs.png"/><span style="width:18%">You fill out the form to express your need (approx 1 min)</span></div>
<div class="third_process"><img src="images/recevoir-offre-standard-telephonique-pas-cher.png"/><span style="width:18%">You fill out the form to express your need (approx 1 min)</span></div>
</div>
This is the CSS code:
.parent_process{ width:100%; white-space:nowrap; }
.parent_process div{ display:inline-block; width:33.3%;}
.first_process{ text-align:left; }
.second_process{ text-align:center; }
.third_process{ text-align:right; }
How can I create my 3 columns: 1)my text 1 | 2) my text 2 | 3) my text 3
Would appreciate any assistance!
Regards