I am trying to restyle a table generated by an asp.net gridview control. The problem I have is that the gridview is generating an inline styles. How do I make the browser render my css rather then the html style attribute?
|
|
You can try !important in your CSS file. |
||
|
|
|
|
I think you would need to override the style with JavaScript. jQuery would make this very easy. |
||
|
|
|
|
You could try appending "!important" on to your css style definitions as per this article, or following the previous suggestion from Ryan Lanciaux |
||
|
|
|
|
Are you using themes? Themes create inline styles. To get rid of them, you can turn off theming for the gridview:
|
||
|
|
|
|
You can use !important; but that doesn't work in all browsers. Here is an article on the usage of !important. |
||
|
|
|
|
Unfortunately, inline CSS is always the last style applied to an element, so the inline styles will always override external styles. If the Gridview's generated styles are giving you fits, have a look at the ASP.NET CSS Friendly Control Adapters (http://www.asp.net/CssAdapters/). It's a great project. |
||
|
|
|
You may want to take a look at this: http://justgeeks.blogspot.com/2008/09/override-any-css-style-even-inline.html. Use the !Important modifier to make it happen |
||
|
|
|
|
According to the CSS specification, element selectors have a specificity of 1, class selectors have a specificity of 10, ID selectors have a specificity of 100, and the specificity of inline styles is 1000. A higher specificity will override a lower specificity, so inline styles always win. However, there is a way out. The !important declaration overrides all the unimportant declarations. No matter what the source of the style is, it will lose to anything with the !important declaration. Source: CSS Web Design by Eric A. Meyer. |
||
|
|
|
|
Inline style has precedence over external styles. It cannot be overriden unless you use !Important. |
||
|
|
