up vote 3 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

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|improve this answer
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 Oct 17 '08 at 15:34
feedback

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|improve this answer
feedback

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

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

Your Answer

 
or
required, but never shown

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