blob: 72ecf0d0992905f3c853b0ac5bf3a6bba7e170fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<title>display: inline-block</title>
<style>
div {
display: inline-block;
width: 200px;
height: 100px;
margin: 20px;
border: 1px solid black;
}
</style>
</head>
<body>
<div>Hello friends! This <b>div</b> has <b>display: inline-block</b> :^)</div>
<div>Hello friends! That means its laid out like a block on the inside.</div>
<div>Hello friends! But it acts like an atomic inline box on the outside!</div>
</body>
</html>
|