Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to know which renders faster - margin or padding.
I know that they are different - padding is for inside and margin is for outside.

I ask this question because when I don't have specific width, and I don't use border both can do the same.... move the text to where I want.

so, is one of them renders faster than the second?

share|improve this question

migrated from webmasters.stackexchange.com Feb 4 '12 at 18:18

2 Answers

up vote 10 down vote accepted

The difference isn't going to be measurable.

And you're wrong about them being interchangeable: margin collapsing exists, but padding collapsing doesn't.

share|improve this answer

If you're trying to optimize your html doc, this will not make a difference, worry more for the javascript codes, your site structure, images, and counting...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.