html - Div alignments in CSS -
i have alignment in image based on number of sub divs, using css/html , bootstrap.
- full width can hold upto 3 divs (i.e. .container)
- if 2 divs shown should center aligned.
as of now, divs align left or right.
what easy way achieve css/html? not sure keywords should search on google - there lot of articles talking centering divs.
set div
inline-block
, wrapper text-align: center
:
.wrapper { text-align: center; } .wrapper div { width: 100px; height: 100px; background: red; display: inline-block; margin: 20px; }
<div class ="wrapper"> <div></div> <div></div> <div></div> </div> <div class="wrapper"> <div></div> <div></div> </div>
Comments
Post a Comment