Prev Demo
CSS3
>
[Attribute=Value] Selector
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> a[target=_self] { background-color: lightgreen; } </style> <p>Hyperlink without attribute :<a href="http://www.techfunda.com" title="www.TechFunda.com">TechFunda</a></p> <p>Hyperlink with attribute target=_blank:<a href="http://www.dotnetfunda.com" target="_blank">DotNetFunda</a></p> <p>Hyperlink with attribute target=_self:<a href="http://www.itfunda.com" target="_self">ITFunda</a></p> </body> </html>
Note: We DO NOT save your trial code in our database.
Output