blob: 80b7db6d386ba6d65a1130a8bbaaa5a5431281bf (
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
|
<!DOCTYPE html>
<title>flexbox | justify-content: space-around | single item</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
height: 8em;
width: 30em;
}
span {
background: white;
margin: 1em auto;
width: 6em;
max-width: 6em;
height: 6em;
display: block;
}
</style>
<div>
<span>one</span>
</div>
|