Firefox adds extra width with padding?

It's not firefox that's the problem, it's IE IE does not perform to standards, there are a few tricks to this but they are all a pain in the ass: en.wikipedia.org/wiki/Internet_Explorer_... The easiest way is to include a valid strict doctype tag:! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd Then just rewrite the css for the standards-compliant box model More doctypes here.

It's not firefox that's the problem, it's IE. IE does not perform to standards, there are a few tricks to this but they are all a pain in the ass: en.wikipedia.org/wiki/Internet_Explorer_... The easiest way is to include a valid strict doctype tag: Then just rewrite the css for the standards-compliant box model More doctypes here.

Correct but new web pages should always use the strict doctype. – Rob Nov 16 '10 at 13:28 That's what I said! :D – J V Nov 16 '10 at 13:59 You show the transitional doctype.

– Rob Nov 16 '10 at 14:05 You said strict but wrote up transitional. – Surreal Dreams Nov 16 '10 at 14:06 Damn, my bad, edited :) – J V Nov 16 '10 at 14:48.

By default, box-sizing is set to content-box in mozilla and border-box in IE. By using: -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; in your style's you can set box sizing of mozilla, safari and opera to border-box too. For more information check: css3.info/preview/box-sizing.

I have a question regarding CSS in Firefox. If I set a width of a floated div - lets say 200px - setting a padding-left to 10px will in Firefox add those extra 10px to the width. In IE that is not the case.

What can you do to prevent Firefox from adding the extra width to the div?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions