mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-16 14:02:00 +00:00
20 lines
404 B
HTML
20 lines
404 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<link rel="match" href="../expected/css-lang-selector-ref.html" />
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 100px;
|
|
border: 1px solid black;
|
|
}
|
|
div:lang(en) {
|
|
background-color: red;
|
|
}
|
|
div:lang("fr",de) {
|
|
background-color: blue;
|
|
}
|
|
</style>
|
|
<div>Red</div>
|
|
<div lang="fr">Blue</div>
|
|
<div lang="de">Blue</div>
|
|
</html>
|