Can a CSS selector be included within the body section of an HTML document? Here's an example of my code (although it is not functioning as expected):
<html>
<head>
</head>
<body>
<div style= "a[target=_blank] {background-color: yellow;}"> **css selector on this section
<a href="http://test.com">test</a>
<a href="http://test1.com" target="_blank">test1</a>
<a href="http://test2.com" target="_top">test2</a>
</div>
</body>
</html>