1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 05:45:07 +00:00
serenity/Base/res/html/misc/attrselectors.html

24 lines
704 B
HTML

<html>
<head>
<title>CSS attribute selector test</title>
<style type="text/css">
[hello=friends] {
background-color: #f0f;
color: white;
}
div[id="foo"] {
background-color: blue;
color: #fff;
}
div[cool] {
background-color: green;
color: #ffffff;
}
</style>
</head>
<body>
<div hello=friends>This div is hello, friends!</div>
<div id="foo">This div has id="foo" and is bloo!</div>
<div cool="">This div has a "cool" attribute and a cool green color.</div>
</body>
</html>