blob: b7652912ddd731231f3b66b3cdb81c6bfd2d686b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<title>Test min-width CSS property in the body</title>
<style>
body {min-width: 2000px; margin: 50px}
.test {background: lightgrey}
</style>
</head>
<body>
<div class="test">
<p>Hello</p>
</div>
</body>
</html>
|