css - Styling options in bold in Internet Explorer -
css - Styling options in bold in Internet Explorer -
i getting styling problem options. need options appear in bold style, net explorer doesn't want render it.
i'm setting using css:
font-weight: bold;
which not working. illustration can seen in page:
example
which shows bold fonts in firefox not in net explorer.
i have tried in net explorer 7 , 8.
has has alternative?
edit: sample:
html:
<select> <option class="special">special</option> </select>
css:
.special { font-weight: bold; }
ie doesn't allow styling of <option>
elements independently. because ie uses windows form command render select box, doesn't back upwards feature.
(as aside, same reason ie's select boxes can have issues layering when set them behind other objects; form command beingness rendered windows os, not browser, browser has less command on other elements on page)
other modern browsers allow it, render own select boxes rather deferring os.
css internet-explorer options
Comments
Post a Comment