Is it possible to display 3 lines inline side by side in bootstrap? I've encountered a challenge with the height
and width
! While using pure css
works fine, integrating bootstrap seems to be causing issues.
Below is an example of the code using CSS for one line. The same method applies to the other two lines:
<div style="display:inline-block ;height:2px; width:100px;border-radius:10px; background-color: blue;"
Any suggestions on how to achieve this using bootstrap? Would using a parent class help with defining the height
and the width
?