mirror of
https://github.com/RGBCube/serenity
synced 2025-06-14 03:52:09 +00:00

Parse them, and also don't give up completely if the first language listed doesn't match an element.
16 lines
283 B
HTML
16 lines
283 B
HTML
<html lang="en">
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
background-color: red;
|
|
}
|
|
#fr, #de {
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<div>Red</div>
|
|
<div id="fr">Blue</div>
|
|
<div id="de">Blue</div>
|
|
</html>
|