blob: 792de5b4757f78fcbb96511ad114d422021faa79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<title>Test max-width CSS properties</title>
<style>
body {margin: 20px}
.test {min-width: 100px; height: 100px; background: lightgreen}
</style>
</head>
<body>
<div class="test">
</div>
</body>
</html>
|