How do I define a CSS style applying to this link with class="disney" and target="_blank"?
<a class="disney" href="http://www.disney.com" target="_blank">disney.com</a>
!important to example color: red !important if you have problem.The following selector should do it:
a.disney[target="_blank"] {
/* your styles here */
}
Support is basically universal by now - all the major browsers have supported it for a long time. See the MDN documentation.