mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 16:18:53 +00:00
25 lines
344 B
HTML
25 lines
344 B
HTML
<html>
|
|
<head>
|
|
<title>test</title>
|
|
<script type="application/javascript;version=1.7">
|
|
|
|
</script>
|
|
<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>
|