The inline-block list items have constant spaces between them by default if the margin is same for all directions. My question is, how can we increase this space BETWEEN list items if we have to using CSS?
The inline-block list items have constant spaces between them by default if the margin
Share
With an horizontal padding?
padding-left:5px,padding-right:5px;Or you can use relative positioning and a distance from left:
And so on…