Skip to content

Commit 0af2a91

Browse files
fixing spacing on browser fallback examples
1 parent d883c66 commit 0af2a91

File tree

6 files changed

+37
-37
lines changed

6 files changed

+37
-37
lines changed

flexbox/basics/simple-example-anon.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
}
3333

3434
textarea:nth-of-type(2) {
35-
height: 160px
35+
height: 120px
3636
}
3737

3838
.playable-buttons {
@@ -86,18 +86,18 @@ <h2>One</h2>
8686
</div>
8787

8888
</section>
89-
<textarea class="playable-css">
90-
.box {
91-
display: flex;
92-
}
93-
</textarea>
94-
<textarea id="code" class="playable-html">
95-
<div class="box">
96-
<h2>One</h2>
97-
<div>Two</div>
98-
Three is an unwrapped string
99-
</div>
100-
</textarea>
89+
<textarea class="playable-css">
90+
.box {
91+
display: flex;
92+
}
93+
</textarea>
94+
<textarea id="code" class="playable-html">
95+
<div class="box">
96+
<h2>One</h2>
97+
<div>Two</div>
98+
Three is an unwrapped string
99+
</div>
100+
</textarea>
101101
<div class="playable-buttons">
102102
<input id="reset" type="button" value="Reset">
103103
</div>

flexbox/browsers/float.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232

3333
textarea:nth-of-type(2) {
34-
height: 80px
34+
height: 100px
3535
}
3636

3737
.playable-buttons {
@@ -98,7 +98,7 @@
9898
.box {
9999
display: flex;
100100
}
101-
101+
102102
.item {
103103
float: left;
104104
width: 150px;

flexbox/browsers/inline-block.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232

3333
textarea:nth-of-type(2) {
34-
height: 80px
34+
height: 100px
3535
}
3636

3737
.playable-buttons {
@@ -61,7 +61,7 @@
6161
border: 2px dotted rgb(96, 139, 168);
6262
}
6363

64-
64+
6565

6666
.box>* {
6767
border: 2px solid rgb(96, 139, 168);
@@ -94,7 +94,7 @@
9494
.box {
9595
display: flex;
9696
}
97-
97+
9898
.item {
9999
display: inline-block;
100100
width: 150px;

flexbox/browsers/table-cell.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232

3333
textarea:nth-of-type(2) {
34-
height: 80px
34+
height: 100px
3535
}
3636

3737
.playable-buttons {
@@ -61,7 +61,7 @@
6161
border: 2px dotted rgb(96, 139, 168);
6262
}
6363

64-
64+
6565

6666
.box>* {
6767
border: 2px solid rgb(96, 139, 168);
@@ -94,7 +94,7 @@
9494
.box {
9595
display: flex;
9696
}
97-
97+
9898
.item {
9999
display: table-cell;
100100
width: 150px;

flexbox/browsers/vertical-align.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232

3333
textarea:nth-of-type(2) {
34-
height: 80px
34+
height: 100px
3535
}
3636

3737
.playable-buttons {
@@ -61,7 +61,7 @@
6161
border: 2px dotted rgb(96, 139, 168);
6262
}
6363

64-
64+
6565

6666
.box>* {
6767
border: 2px solid rgb(96, 139, 168);
@@ -95,7 +95,7 @@
9595
.box {
9696
display: flex;
9797
}
98-
98+
9999
.item {
100100
display: inline-block;
101101
vertical-align: top;

flexbox/order/flex-direction.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -92,19 +92,19 @@
9292
</div>
9393
</section>
9494

95-
<textarea class="playable-css">
96-
.box {
97-
display: flex;
98-
flex-direction: row-reverse;
99-
}
100-
</textarea>
101-
<textarea id="code" class="playable-html">
102-
<div class="box">
103-
<div><a href="#">One</a></div>
104-
<div><a href="#">Two</a></div>
105-
<div><a href="#">Three</a></div>
106-
</div>
107-
</textarea>
95+
<textarea class="playable-css">
96+
.box {
97+
display: flex;
98+
flex-direction: row-reverse;
99+
}
100+
</textarea>
101+
<textarea id="code" class="playable-html">
102+
<div class="box">
103+
<div><a href="#">One</a></div>
104+
<div><a href="#">Two</a></div>
105+
<div><a href="#">Three</a></div>
106+
</div>
107+
</textarea>
108108
<div class="playable-buttons">
109109
<input id="reset" type="button" value="Reset">
110110
</div>

0 commit comments

Comments
 (0)