mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-17 09:18:38 +00:00
22 lines
278 B
HTML
22 lines
278 B
HTML
<html>
|
|
<head>
|
|
<title>test</title>
|
|
<style>
|
|
div {
|
|
width: 1000px;
|
|
height: 100px;
|
|
background-color: #f00;
|
|
}
|
|
|
|
@media screen and (min-width: 1px) {
|
|
div {
|
|
width: 200px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|