Skip to content

Commit 2034730

Browse files
authored
Merge pull request jhu-ep-coursera#20 from Fayadh56/patch-1
Update box-model-before.html. Thank you again, @Fayadh56 !
2 parents aa24215 + e168b9b commit 2034730

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

examples/Lecture19/box-model-before.html

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,16 @@
44
<meta charset="utf-8">
55
<title>The Box Model</title>
66
<style>
7-
* {
8-
box-sizing: border-box;
9-
margin: 0;
10-
padding: 0;
11-
}
127

138
body {
149
background-color: gray;
1510
}
1611

1712
#box {
1813
background-color: blue;
19-
padding: 10px;
20-
border: 5px solid black;
21-
width: 300px;
22-
height: 50px;
23-
margin-top: 50px;
24-
overflow: auto;
2514
}
2615
#content {
27-
background-color: #90EE90; //green
16+
background-color: #90EE90; /*green*/
2817
}
2918

3019
h1 {
@@ -38,8 +27,7 @@
3827
<h1>Box Model</h1>
3928

4029
<div id="box">
41-
<div id="content">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Suscipit error quis ab perspiciatis eos inventore recusandae iste itaque numquam facilis, tenetur. Doloribus officiis quae facilis, nisi, ex similique. Animi, perferendis.
42-
</div>
30+
<div id="content">Lorem ipsum dolor sit amet, consectetur adipisicing elit. </div>
4331
</div>
4432

4533

0 commit comments

Comments
 (0)