0

I have a site containing the following line :

< div id="German" style="display: inline-block" >

The display tag is inline, and I would like to override this in the CSS.

Any suggestions?

The Pragmatick
  • 5,379
  • 27
  • 44
  • 1
    You need to read about [CSS Specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity) – Liam Jan 26 '15 at 13:11

1 Answers1

1

You have to use !important to override inline styles...

#German {
    display: static !important;
}
Turnip
  • 35,836
  • 15
  • 89
  • 111