blob: fbb938fd06558ec94fb43ee3cdbb2fb11740defa (
plain) (
blame)
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
30
|
<!DOCTYPE html>
<html><head><title>flexbox | margin-left: auto</title>
<link href="http://opera.com" rel="author" title="Opera Software">
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
height: 8em;
width: 32em;
position: relative;
}
span {
background: white;
margin: 1em;
height: 6em;
display: inline-block;
}
span:first-child {
margin: 0;
position: absolute;
right: 1em;
top: 1em;
}
</style>
</head><body><div>
<span>four</span><span>one</span><span>two</span><span>three</span>
</div>
</body></html>
|