mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 02:05:07 +02:00
13 lines
287 B
HTML
13 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>
|