Is it possible to style the hyperlink tag in CSS in such a way that when a link is clicked it opens it in a new tab or window? I know the solution in HTML and JavaScript/jQuery, yet is it possible to specify this attribute using a stylesheet? Also note that this question is important because it could possibly save me many keystrokes and code clutter. Thanks for your mind and time. =)
HTML:
target="_blank"
jQuery/JavaScript:
window.open($(this).attr("href"), '_blank', 'modal=yes');
Css:
.class a {
???
}