blob: 369d36bb93a3b082354eb47433a5a598e3355274 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html>
<head>
<style>
div {
width: 100px;
height: 100px;
display: inline-block;
}
</style>
</head>
<body>
<div style="background: blue"></div>
<div style="background: yellow"></div>
</body>
</html>
|