mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-26 10:49:29 +00:00
12 lines
287 B
HTML
12 lines
287 B
HTML
<!doctype html>
|
|
<style>
|
|
div[type=one] {
|
|
background: red;
|
|
}
|
|
div[type=three] {
|
|
background: blue;
|
|
}
|
|
</style>
|
|
<div type="one">I have a red background</div>
|
|
<div type="two">I don't have a green background</div>
|
|
<div type="three">I have a blue background</div>
|