mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
16 lines
242 B
HTML
16 lines
242 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<body>
|
||
|
|
<p>First</p>
|
||
|
|
<p>
|
||
|
|
<style scoped>
|
||
|
|
@media not all {
|
||
|
|
p { text-decoration: underline }
|
||
|
|
}
|
||
|
|
@media all {
|
||
|
|
p { color: blue }
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
Second
|
||
|
|
</p>
|
||
|
|
<p>Third</p>
|
||
|
|
</body>
|