vote up 3 vote down star

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?

flag

9 Answers

vote up 9 vote down check

You can try !important in your CSS file.

link|flag
vote up 1 vote down

I think you would need to override the style with JavaScript. jQuery would make this very easy.

link|flag
vote up 2 vote down

You could try appending "!important" on to your css style definitions as per this article, or following the previous suggestion from Ryan Lanciaux

link|flag
vote up 0 vote down

Are you using themes? Themes create inline styles. To get rid of them, you can turn off theming for the gridview:

<asp:GridView EnableTheming="false" ... />
link|flag
vote up 2 vote down

You can use !important; but that doesn't work in all browsers.

Here is an article on the usage of !important.

link|flag
vote up 0 vote down

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.

link|flag
not true, !important has higher specificity than anything else – annakata Jan 21 '09 at 15:55
vote up 1 vote down

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

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

Inline style has precedence over external styles. It cannot be overriden unless you use !Important.

link|flag

Your Answer

Get an OpenID
or

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