Chrome
Cobalt
Monokai
Dreamweaver
Vibrant Ink
Answer
Submit
<!DOCTYPE html> <html lang="en"> <head> <title>Learn CSS</title> </head> <body> <h2>CSS [attribute] Selector</h2> <p title="CSS Attributes">Only this will get styled</p> <p>Style will not apply</p> </body> </html>
p[title] { background-color: yellow; }
//Javascript