blob: 91840f04c7d57190d413aba36f1e494885c0a025 (
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</title>
<style>
body {margin: 20px}
.test {min-width: 400px; display: inline-block; background: lightgrey}
</style>
</head>
<body>
<div class="test">
<p>Hello</p>
</div>
</body>
</html>
|