tenfourfox/devtools/client/styleeditor/test/media-rules.css
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
225 B
CSS

@media not all {
div {
color: blue;
}
}
@media all {
div {
color: red;
}
}
div {
width: 20px;
height: 20px;
background-color: ghostwhite;
}
@media (max-width: 400px) {
div {
color: green;
}
}