Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <link href="resources/flexbox.css" rel="stylesheet"> | |
| 5 <style> | |
| 6 .flexbox { | |
| 7 border: 1px solid black; | |
| 8 width: 400px; | |
| 9 } | |
| 10 .item1 { | |
| 11 margin: 0 auto; | |
| 12 background: lightblue; | |
| 13 } | |
| 14 .item2 { | |
| 15 background: lime; | |
| 16 } | |
| 17 </style> | |
| 18 </head> | |
| 19 <body> | |
| 20 <div class="flexbox column"> | |
| 21 <div class="item1">centeredWithMargins</div> | |
| 22 <div class="item2 align-self-center">centeredWithAlignSelf</div> | |
| 23 </div> | |
| 24 </body> | |
| 25 </html> | |
| OLD | NEW |