I'm trying to skin HTML output which I don't have control over. One of the elements is a DIV with a style="overflow: auto" attribute. Is there a way in CSS to force that DIV to use "overflow: hidden"?
|
|
You can add
This is something you should not rely on normally, but in your case that's the best option. Changing the value in Javascript strays from the best practice of separating markup, presentation, and behavior (html/css/javascript). |
|||
|
|
|
|
Magnar is correct as explained by the W3C spec pasted below. Seems the !important keyword was added to allow users to override even "baked in" style settings at the element level. Since you are in the situation where you do not have control over the html this may be your best option, though it would not be a normal design pattern. Excerpt:
|
|||
|
|
|
If the div has an inline style declaration, the only way to modify it without changing the source is with JavaScript. Inline style attributes 'win' every time in CSS. |
||
|
|
|
|
not sure if this would work or not, haven't tested it with overflow:
maybe? |
||
|
|
|
|
Have you tried setting
|
||
|
|
|
|
As far as I know, styles on the actual HTML elements override anything you can do in separate CSS style. You can, however, use Javascript to override it. |
||
|
|
