85 lines
1.6 KiB
HTML
85 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<link rel="stylesheet" href="simple.css"/>
|
|
<link rel="stylesheet" href="media-rules.css"/>
|
|
<!-- This stylesheet is needed to ensure we cover the fix for Bug 1779043 -->
|
|
<style>
|
|
div {
|
|
color: salmon;
|
|
}
|
|
</style>
|
|
<style>
|
|
@media screen {
|
|
div {
|
|
outline: 1px solid tomato;
|
|
}
|
|
|
|
@supports (display: flex) {
|
|
@media (1px < height < 10000px) {
|
|
div {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@layer myLayer {}
|
|
@container (min-width: 1px) {
|
|
body {
|
|
div {
|
|
color: gold;
|
|
@supports selector(&) {
|
|
&:hover {
|
|
color: yellowgreen;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@container --my-container (height > 42px) {}
|
|
/* query-less container */
|
|
@container --my-container {}
|
|
|
|
@property --my-property {
|
|
syntax: "<color>";
|
|
inherits: true;
|
|
initial-value: #f06;
|
|
}
|
|
|
|
@position-try --pt-custom-bottom {
|
|
top: anchor(bottom);
|
|
bottom: unset;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
@custom-media --mobile-breakpoint (width < 320px) and (height < 1420px), not print;
|
|
@custom-media --enabled true;
|
|
@custom-media --disabled false;
|
|
|
|
div {
|
|
color: chocolate;
|
|
|
|
@media (--mobile-breakpoint) {
|
|
color: peachpuff;
|
|
}
|
|
|
|
@media (--enabled) {
|
|
color: green;
|
|
}
|
|
|
|
@media (--disabled) {
|
|
color: red;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
Testing style editor media sidebar
|
|
</div>
|
|
</body>
|
|
</html>
|