How To Move All Divs By 1px To The Left?
I want to do something like this: .cont{position:relative;display:inline-block;} .cont:nth-child(2) {left:-1px} .cont:nth-child(3) {left:-2px} .cont:nth-child(4) {left:-3px} .... .
Solution 1:
You should just be able to add margin-left:-1px;
to cont
class.
Post a Comment for "How To Move All Divs By 1px To The Left?"