OLD | NEW |
1 <import src="../resources/dump-as-render-tree.sky" /> | 1 <import src="../resources/dump-as-render-tree.sky" /> |
2 | 2 |
3 <style> | 3 <style> |
4 block, paragraph, flex { | 4 block, paragraph, flex { |
5 width: 100px; | 5 width: 100px; |
6 height: 100px; | 6 height: 100px; |
7 margin-bottom: 50px; | 7 margin-bottom: 50px; |
8 /* Make it a positioning root. */ | 8 /* Make it a positioning root. */ |
9 transform: translate3d(0, 0, 0); | 9 transform: translate3d(0, 0, 0); |
10 } | 10 } |
11 block { background: pink; } | 11 block { background: pink; } |
12 paragraph { | 12 paragraph { |
13 background: orange; | 13 background: orange; |
14 display: paragraph; | 14 display: paragraph; |
15 } | 15 } |
16 flex { | 16 flex { |
17 background: salmon; | 17 background: salmon; |
18 display: flex; | 18 display: flex; |
| 19 flex-direction: row; |
19 } | 20 } |
20 spacer { | 21 spacer { |
21 height: 30px; | 22 height: 30px; |
22 width: 30px; | 23 width: 30px; |
23 border: 5px solid purple; | 24 border: 5px solid purple; |
24 background: papayawhip; | 25 background: papayawhip; |
25 } | 26 } |
26 absolute { | 27 absolute { |
27 position: absolute; | 28 position: absolute; |
28 width: 20px; | 29 width: 20px; |
(...skipping 11 matching lines...) Expand all Loading... |
40 <spacer /> | 41 <spacer /> |
41 <absolute /> | 42 <absolute /> |
42 <spacer /> | 43 <spacer /> |
43 </paragraph> | 44 </paragraph> |
44 | 45 |
45 <flex> | 46 <flex> |
46 <spacer /> | 47 <spacer /> |
47 <absolute /> | 48 <absolute /> |
48 <spacer /> | 49 <spacer /> |
49 </flex> | 50 </flex> |
OLD | NEW |