ladybird/Tests/LibWeb/Ref/expected/css-lang-selector-ref.html

18 lines
299 B
HTML
Raw Normal View History

2025-03-18 19:29:54 +01:00
<!DOCTYPE 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>