mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
267 B
HTML
17 lines
267 B
HTML
<!DOCTYPE html>
|
|
<body>
|
|
<p>First</p>
|
|
<p>
|
|
<style scoped>
|
|
@supports (color: rainbow) {
|
|
p { text-decoration: underline }
|
|
}
|
|
@supports (color: blue) {
|
|
p { color: blue }
|
|
}
|
|
</style>
|
|
Second
|
|
</p>
|
|
<p>Third</p>
|
|
</body>
|