In a DIV I place some text/html code which get loaded from a database. This text sometimes contains font size definitions (ex: font size="3"). is there a way to override this font size in this specific DIV using CSS.
I am grateful for any help.
|
Assuming mark-up similar to the following:
Then you can explicitly instruct CSS to
Please note, of course, that Incidentally, while Further, this is treating the symptom of your problem; the problem you're really facing is the presence of the References: |
|||||||||
|
|
One idea: give these text tags an id or class, then use JavaScript to find these elements and change the style on them. |
|||
|
|
|
How about stripping the "font" tags from the text before inserting into the div? Then just style the div with a font size. |
|||
|
|
|
Using the CSS !important notation you are telling the browser to overwrite any font-size defined inside your From the above link it reads:
Example See this working Fiddle Example!
|
||||
|
|
!important. – j08691 Jun 15 '12 at 19:24