/ Published in: CSS
If you want to specify a width to any div, do NOT specify padding or margins. Just create an inner div with no width set and specify its padding and margins instead.
Expand |
Embed | Plain Text
/* Instead of this */ #main-div{ width: 150px; border: 5px; padding: 20px; } /* Do this */ #main-div{ width: 150px; } #main-div div{ border: 5px; padding: 20px; }
You need to login to post a comment.
