vote up 1 vote down star

I use a custom-built asp.net control that renders to a DIV and has "height='0'" hard-coded into the element (I know.. stupid). But I need to reset it - get rid of the height assignment somehow. Is this doable with CSS?

I can set the height to 100px for example, and it works. But that's not what I want - I want the height assignment removed pretty much.

UPDATE: Using FireBug, I can see that CSS's height gets overridden by the hard-coded one:

alt text

I guess there's no way for me to resolve this besides removing the hard-coded height=0. Anyone else see an alternative?

flag

69% accept rate

3 Answers

vote up 2 vote down check

You might well need to use height:auto !important because the height attribute has a very high priority (IIRC).

But ideally you would karate-kick that attribute out of there. Yuck.

link|flag
Ah, thanks! The addition of "!important" did it! (I know, I'd LOVE to bitch-slap that sucker out of there, but it's not up to me.) – Kon M Oct 17 '08 at 15:34
vote up 0 vote down

The style attribute always overrides class. So you're going to have to remove the height rule of the style attribute.

link|flag
It's a height attribute, not a style attribute. – Oli Oct 17 '08 at 15:25
Rahul is actually correct - it's the property of the style attribute in this case. – Kon M Oct 17 '08 at 15:27
vote up 1 vote down

change the height to 'auto' and see if that works for you.

Auto is the default height for elements, it means the browser calculates the height itself.

link|flag

Your Answer

Get an OpenID
or

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