You have the following HTML:
<object height="400"></object>
In the CSS, you have:
object { height: auto; }
Is there a way to omit the CSS height: auto without deleting it? In other words, is there a way to make the attribute value override the stylesheet?
height="400"isn't inline CSS, it's an attribute with a value. Inline CSS would bestyle="height:400px"