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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-07-expected.html

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed several bug and added new tests. Created 4 years, 1 month 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <link href="resources/grid.css" rel="stylesheet">
3 <link href="resources/grid-alignment.css" rel="stylesheet">
4 <style>
5 body { margin: 0; }
6 .flex {
7 display: flex;
8 background: grey;
9 float: left;
10 margin: 5px;
11 }
12 .row { flex-flow: row; }
13 .row-reverse { flex-flow: row-reverse; }
14 .column { flex-flow: column; }
15 span:nth-child(1) { font-size:12px; }
16 span:nth-child(2) { font-size:16px; }
17 span:nth-child(3) { font-size:24px; }
18 span:nth-child(4) { font-size:32px; }
19 span {
20 border: 2px solid;
21 padding: 3px;
22 margin: 5px;
23 }
24 .extraTopPadding { padding-top: 15px; }
25 .extraBottomPadding { padding-bottom: 15px; }
26 .extraLeftPadding { padding-left: 15px; }
27 .extraRightPadding { padding-right: 15px; }
28 .verticalLR { text-orientation: sideways; }
29 .verticalRL { text-orientation: sideways; }
30 </style>
31
32 <p>4x1 with parallel and orthogonal items.<br>2 items participate in their own c olumn-like Baseline Context.<br>2 items share 'first-row' (matches their inline axis) Baseline Context.<br>The 'justify-self' property can be used to align thes e 2 items along their block-axis so they are baseline-aligned to each other.<br> The Baseline Alignment may increase size contribution of some items.</p>
33 <div class="flex row verticalLR itemsBaseline"><span class="horizontalTB">A</spa n><span>A</span><span class="horizontalTB">A</span><span>A</span></div>
34 <div class="flex row verticalLR itemsBaseline"><span class="horizontalTB extraLe ftPadding">A</span><span class="extraRightPadding">A</span><span class="horizont alTB">A</span><span>A</span></div>
35 <div class="flex row itemsBaseline"><span>A</span><span class="verticalLR">A</sp an><span>A</span><span class="verticalLR">A</span></div>
36 <div class="flex row itemsBaseline"><span class="extraBottomPadding">A</span><sp an class="verticalLR extraTopPadding">A</span><span>A</span><span class="vertica lLR">A</span></div>
37 <div class="flex row-reverse itemsBaseline"><span>A</span><span class="verticalR L">A</span><span>A</span><span class="verticalRL">A</span></div>
38 <div class="flex row-reverse itemsBaseline"><span class="extraBottomPadding">A</ span><span class="verticalRL extraTopPadding">A</span><span>A</span><span class= "verticalRL">A</span></div>
39
40
41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698