Skip to content

Commit 306a511

Browse files
authored
Merge pull request #144 from OnkarRuikar/patch-1
fix(CSS): too much overflow in the example output
2 parents c782a30 + 0c45fe1 commit 306a511

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

learn/overflow/auto.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<style class="editable">
1212
.box {
1313
border: 1px solid #333333;
14-
width: 200px;
14+
width: 350px;
1515
height: 100px;
1616
overflow: auto;
1717
}
@@ -26,7 +26,7 @@
2626
<textarea class="playable playable-css" style="height: 120px;">
2727
.box {
2828
border: 1px solid #333333;
29-
width: 200px;
29+
width: 350px;
3030
height: 100px;
3131
overflow: auto;
3232
}

learn/overflow/block-overflow.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<style class="editable">
1212
.box {
1313
border: 1px solid #333333;
14-
width: 200px;
14+
width: 350px;
1515
height: 100px;
1616
}
1717
</style>
@@ -25,7 +25,7 @@
2525
<textarea class="playable playable-css" style="height: 120px;">
2626
.box {
2727
border: 1px solid #333333;
28-
width: 200px;
28+
width: 350px;
2929
height: 100px;
3030
}
3131
</textarea>

learn/overflow/hidden.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<style class="editable">
1212
.box {
1313
border: 1px solid #333333;
14-
width: 200px;
14+
width: 350px;
1515
height: 100px;
1616
overflow: hidden;
1717
}
@@ -26,7 +26,7 @@
2626
<textarea class="playable playable-css" style="height: 120px;">
2727
.box {
2828
border: 1px solid #333333;
29-
width: 200px;
29+
width: 350px;
3030
height: 100px;
3131
overflow: hidden;
3232
}

learn/overflow/scroll-y.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<style class="editable">
1212
.box {
1313
border: 1px solid #333333;
14-
width: 200px;
14+
width: 350px;
1515
height: 100px;
1616
overflow-y: scroll;
1717
}
@@ -26,7 +26,7 @@
2626
<textarea class="playable playable-css" style="height: 120px;">
2727
.box {
2828
border: 1px solid #333333;
29-
width: 200px;
29+
width: 350px;
3030
height: 100px;
3131
overflow-y: scroll;
3232
}

learn/overflow/scroll.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<style class="editable">
1212
.box {
1313
border: 1px solid #333333;
14-
width: 200px;
14+
width: 350px;
1515
height: 100px;
1616
overflow: scroll;
1717
}
@@ -26,7 +26,7 @@
2626
<textarea class="playable playable-css" style="height: 120px;">
2727
.box {
2828
border: 1px solid #333333;
29-
width: 200px;
29+
width: 350px;
3030
height: 100px;
3131
overflow: scroll;
3232
}

0 commit comments

Comments
 (0)