vote up 1 vote down star

Hi!

I'm having a problem with the padding in my form on my website. If I've set a height/width to a form element and then adds a padding to it. In all browsers I've tried, except Firefox, the padding is added to the height/width.

If I have a input with 200 in width and 20px in height. and padding at 5 (all ways), the sum and total width and height would be 210px and 30px, but in Firefox it is 200px and 20px.

How do I work my way around this?

flag
Link to page? Did you set a DOCTYPE? – jeffamaphone Aug 30 at 18:18
It's not online yet. ;\ I've read about someone having issue with this earlier, but I haven't found any answers. I have set doctype to xhtml trans. – Anders Gressli Aug 30 at 18:21
The document is also valid in xhtml strict – Anders Gressli Aug 30 at 18:24

2 Answers

vote up 2 vote down

Try to use a CSS framework such as blueprint-css. Take a look the example pages that ship with blueprint (there's a file called forms.html). This should solve your padding problem as well as a bunch of other problems you may encounter.

link|flag
I saw the blueprint form css-file and it seems like input[type=text] did the trick on the input field at least..! Now I only need to solve it on the textarea, I'll look into it! Thanks (: – Anders Gressli Aug 30 at 21:21
vote up 0 vote down

Have you tried putting display:block on the form? It sounds like FF might possibly be treating it like it was an inline element.

link|flag
display: inline-block might be better – Eric Aug 30 at 19:18

Your Answer

Get an OpenID
or

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