blob: c548d5e2d41fc5e45f678989f15578bc1a895bfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
<title>
CSS Reference
</title>
<style>
.box {
display: flex;
border: 1px solid black;
margin: 5px 20px;
}
.box > * {
border: 1px dotted purple;
}
</style>
</head>
<body>
<div class="box">
<div>1</div>
<div>0</div>
</div>
</body>
</html>
|