vote up 0 vote down star

In Firefox and IE8 this isn't a problem, but in IE6, and IE7 I can't seem to reduce the padding/margin on radio buttons to anything reasonable (e.g. 0px or 1px).

In the included images, you can see that the red background is huge on IE6/IE7 (even with CSS padding and margin both set to 0px) yet in Firefox/IE8 it is fine.

The reason of course is that the tree I'm rendering looks horrible with the gaps in IE6/IE7.

IE6/IE7

alt text

Firefox/IE8

alt text

Notes: the page runs in standards mode, and the red is just for illustration.

Some sample code (for those that want to hack at it)

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>IE Radio button padding hell</title>
<style>
  input{
    background-color:red;
    border:0px;
    margin:0px;
    padding:0px;
  }
</style>
</head>
<body>
  <form name="asdf">
    <input type="radio" name="sdfgsd" value=""/>asdf<br/>
    <input type="radio" name="sdfgsd" value=""/>asdf<br/>
    <input type="radio" name="sdfgsd" value=""/>asdf<br/>
    <input type="radio" name="sdfgsd" value=""/>asdf<br/>
  </form>
</body>
</html>
flag

65% accept rate

3 Answers

vote up 1 vote down check

Use height to solve this problem

I am using this on class on input

.radiobtn { border:0px; height:14px; }

on

Yes

It will work fine in I.E 6.0/7

link|flag
I will try this out! thanks! – scunliffe Jul 31 at 10:38
This improved things significantly. I still get a 1px margin between vertical rows that I don't want but its much less noticeable. – scunliffe Jul 31 at 10:54
vote up 0 vote down

Without seeing code I think your running into this "IE inherited margin bug: form elements and hasLayout"

Positioniseverything.net has a good write up on it: http://www.positioniseverything.net/explorer/inherited_margin.html

Cheers

link|flag
vote up 0 vote down

The reason of course is that the tree I'm rendering looks horrible with the gaps in IE6/IE7.

I'm guessing you're using an image file to render the dots and plusses ... maybe, to avoid those gaps when the lines are taller, you could use a taller image.

link|flag

Your Answer

Get an OpenID
or

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