2024-06-22 08:33:48 -03:00
|
|
|
<!doctype html>
|
|
|
|
|
<style>
|
|
|
|
|
div[type=one] {
|
|
|
|
|
background: red;
|
|
|
|
|
}
|
2025-05-18 01:27:01 -03:00
|
|
|
div[type=three] {
|
|
|
|
|
background: blue;
|
|
|
|
|
}
|
2024-06-22 08:33:48 -03:00
|
|
|
</style>
|
|
|
|
|
<div type="one">I have a red background</div>
|
|
|
|
|
<div type="two">I don't have a green background</div>
|
2025-05-18 01:27:01 -03:00
|
|
|
<div type="three">I have a blue background</div>
|