blob: 149ff2a93c0ef256bd20746d6c0a0b4bca40f8f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<head>
<title>Test min-width CSS property</title>
<style>
body {margin: 20px}
.container {background: lightcyan}
.test {min-width: 400px; display: inline-block; background: lightgrey}
</style>
</head>
<body>
<div class="container">
<div class="test">
<p>Hello</p>
</div>
</div>
</body>
</html>
|