html - perfect left / right padding for columns -
if have number of block items in list, wondering if there way get
- 0 margin on left,
- 0 margin on right, and
- margins between items in middle
right on items in list know how margin:0px 5px 5px 0px;
this way there no margin on left, matches left of container, there 5px space on far right column... need margin-right 5px
space in between items.
any suggestions?
div.container{ width:calc(100% - 100px); margin: 0 auto; height:100%; display:block; background:black; } div div{ height:200px; width:160px; display:inline-block; background:grey; margin:0px 5px 5px 0px; }
ref: http://jsfiddle.net/ly2m3/1/
again items able against far left , right side of container have margins separate items.
yes, add text-align: justify
div.container
element.
Comments
Post a Comment