Skip to content

Commit f875c1b

Browse files
fixing spacing on flex wrapping examples
1 parent eadd2c6 commit f875c1b

8 files changed

+27
-27
lines changed

flexbox/wrapping/column-wrap.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
}
2727

2828
textarea:nth-of-type(1) {
29-
height: 80px
29+
height: 160px
3030
}
3131

3232
textarea:nth-of-type(2) {
33-
height: 90px
33+
height: 200px
3434
}
3535

3636
.playable-buttons {
@@ -62,7 +62,7 @@
6262
}
6363

6464
.box {
65-
65+
6666
border: 2px dotted rgb(96, 139, 168);
6767
}
6868
</style>

flexbox/wrapping/flex-grid.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
}
2828

2929
textarea:nth-of-type(1) {
30-
height: 80px
30+
height: 160px
3131
}
3232

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

3737
.playable-buttons {
@@ -63,7 +63,7 @@
6363
}
6464

6565
.box {
66-
66+
6767
border: 2px dotted rgb(96, 139, 168);
6868
}
6969
</style>
@@ -77,7 +77,7 @@
7777
.box>* {
7878
flex: 0 0 33.3333%;
7979
}
80-
80+
8181
</style>
8282
</head>
8383

@@ -105,7 +105,7 @@
105105
.box>* {
106106
flex: 0 0 33.3333%;
107107
}
108-
108+
109109
</textarea>
110110
<textarea id="code" class="playable-html">
111111
<div class="box">

flexbox/wrapping/gaps.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
}
2828

2929
textarea:nth-of-type(1) {
30-
height: 80px
30+
height: 260px
3131
}
3232

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

3737
.playable-buttons {
@@ -63,8 +63,8 @@
6363
}
6464

6565
.box {
66-
67-
66+
67+
6868
}
6969
</style>
7070

@@ -74,7 +74,7 @@
7474
width: 500px;
7575
}
7676
.box {
77-
77+
7878
display: flex;
7979
flex-wrap: wrap;
8080
margin:-10px;
@@ -83,7 +83,7 @@
8383
flex: 1 1 160px;
8484
margin: 10px;
8585
}
86-
86+
8787
</style>
8888
</head>
8989

@@ -110,7 +110,7 @@
110110
width: 500px;
111111
}
112112
.box {
113-
113+
114114
display: flex;
115115
flex-wrap: wrap;
116116
margin:-10px;
@@ -119,7 +119,7 @@
119119
flex: 1 1 160px;
120120
margin: 10px;
121121
}
122-
122+
123123
</textarea>
124124
<textarea id="code" class="playable-html">
125125
<div class="wrapper">

flexbox/wrapping/grid-example.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
}
2727

2828
textarea:nth-of-type(1) {
29-
height: 80px
29+
height: 90px
3030
}
3131

3232
textarea:nth-of-type(2) {
33-
height: 90px
33+
height: 220px
3434
}
3535

3636
.playable-buttons {
@@ -72,7 +72,7 @@
7272
display: grid;
7373
grid-template-columns: repeat(auto-fill,minmax(160px, 1fr));
7474
}
75-
75+
7676
</style>
7777
</head>
7878

@@ -96,7 +96,7 @@
9696
display: grid;
9797
grid-template-columns: repeat(auto-fill,minmax(160px, 1fr));
9898
}
99-
99+
100100
</textarea>
101101
<textarea id="code" class="playable-html">
102102
<div class="box">

flexbox/wrapping/row-reverse-wrap.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
}
2727

2828
textarea:nth-of-type(1) {
29-
height: 80px
29+
height: 160px
3030
}
3131

3232
textarea:nth-of-type(2) {
33-
height: 90px
33+
height: 220px
3434
}
3535

3636
.playable-buttons {

flexbox/wrapping/row-wrap.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
}
2727

2828
textarea:nth-of-type(1) {
29-
height: 80px
29+
height: 140px
3030
}
3131

3232
textarea:nth-of-type(2) {
33-
height: 90px
33+
height: 200px
3434
}
3535

3636
.playable-buttons {

flexbox/wrapping/visibility-collapse.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828

2929
textarea:nth-of-type(1) {
30-
height: 80px
30+
height: 160px
3131
}
3232

3333
textarea:nth-of-type(2) {

flexbox/wrapping/wrapped-visibility-collapse.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
}
2828

2929
textarea:nth-of-type(1) {
30-
height: 80px
30+
height: 180px
3131
}
3232

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

3737
.playable-buttons {

0 commit comments

Comments
 (0)