blob: 5bf44ccfbb444846e1bb681c7bb9219f4f5a6ede (
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 {width: 400px; display: inline-block; background: lightgrey}
</style>
</head>
<body>
<div class="container">
<div class="test">
<p>Hello</p>
</div>
</div>
</body>
</html>
|