html - How to add space between inline-block elements? -


to clear, not want remove space between inline-block elements - want add it.

what want have grid of menu items have 2, 3 or 4 items line, i'd achieve using media queries.

how can add space between li items, have no margin on left , right sides of each row? (padding not fix this.) can achieve using css?

* {    -webkit-box-sizing: border-box;    -moz-box-sizing: border-box;    box-sizing: border-box;    border: solid 1px;    font-size: 0;  }  #main {    max-width: 450px;    margin: 0 auto;  }  .item {    display: inline-block;    width: 200px;  }  .item img {    width: 200px;  }  .clearfix {    overflow: auto;  }  li {    list-style-type: none;  }
<div id="main">      <li class="item clearfix">      <a href="project.html">        <div class="thumb">          <img src="http://static01.nyt.com/images/2015/06/23/business/greece-portraits-restauranteur/greece-portraits-restauranteur-mediumthreebytwo225.jpg" alt="portraits greece endures crisis">      </a>    </li>        <li class="item clearfix">      <a href="project.html">        <div class="thumb">          <img src="http://static01.nyt.com/images/2015/06/23/business/greece-portraits-restauranteur/greece-portraits-restauranteur-mediumthreebytwo225.jpg" alt="portraits greece endures crisis">        </div>      </a>    </li>    </div>

maybe you

<html><head> <style> * {   -webkit-box-sizing: border-box;   -moz-box-sizing: border-box;   box-sizing: border-box;   border: solid 1px;   font-size: 0; } #main {   max-width: 452px;   margin: 0 auto; } .item {   display: inline-block;   width: 150px; } .item1 {   display: inline-block;   width: 150px;   padding:0px 4px; } .item img {   width: 200px; } .clearfix {   overflow: auto; } li {   list-style-type: none; } </style>     </head>    <body>    <div id="main">   <li class="item clearfix">     <a href="project.html">       <div class="thumb">         <img src="http://static01.nyt.com/images/2015/06/23/business/greece-portraits-restauranteur/greece-portraits-restauranteur-mediumthreebytwo225.jpg" alt="portraits greece endures crisis">     </a>   </li>   <li class="item1 clearfix">     <a href="project.html">       <div class="thumb">         <img src="http://static01.nyt.com/images/2015/06/23/business/greece-portraits-restauranteur/greece-portraits-restauranteur-mediumthreebytwo225.jpg" alt="portraits greece endures crisis">     </a>   </li>   <li class="item clearfix">     <a href="project.html">       <div class="thumb">         <img src="http://static01.nyt.com/images/2015/06/23/business/greece-portraits-restauranteur/greece-portraits-restauranteur-mediumthreebytwo225.jpg" alt="portraits greece endures crisis">       </div>      </a>   </li>   </div>  </body></html> 

Comments

Popular posts from this blog

Fail to load namespace Spring Security http://www.springframework.org/security/tags -

sql - MySQL query optimization using coalesce -

unity3d - Unity local avoidance in user created world -