Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: LayoutTests/css3/flexbox/columns-center-with-margins-expected.html

Issue 15946003: Don't stretch margin: auto items in a vertical flexbox (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 background: lightblue;
12 }
13 .item2 {
14 background: lime;
15 }
16 </style>
17 </head>
18 <body>
19 <div class="flexbox column">
20 <div class="item1 align-self-center">centeredWithMargins</div>
21 <div class="item2 align-self-center">centeredWithAlignSelf</div>
22 </div>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698