Something like this should work:
HTML
<div id="colored">?</div>โโโโโโโโโโโโโโโโโโโโโโโโโ
Default Style Sheet
#colored { border-top: 1px solid Black; }โ
Javascript
var all = document.styleSheets, s = all[all.length - 1], l = s.cssRules.length; if (s.insertRule) { s.insertRule('#colored {border-top-color: Red !important}', l); } else { //IE s.addRule('#colored', 'border-top-color: Red !important', -1); }โ
source share