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?
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?
You have to use !important
to override inline styles...
#German {
display: static !important;
}