File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ <h1>CSS Test Suite Main Page</h1>
22
22
< a href ="box_model.html "> Box Model</ a > < br />
23
23
< a href ="border.html "> Border</ a > < br />
24
24
< a href ="outline.html "> Outline</ a > < br />
25
+ < a href ="margin.html "> Margin</ a > < br />
25
26
26
27
</ body >
27
28
Original file line number Diff line number Diff line change
1
+ <!Doctype html>
2
+ < html >
3
+
4
+ < head >
5
+
6
+ < style type ="text/css ">
7
+
8
+ p .margin
9
+ {
10
+ background-color : yellow;
11
+ margin-top : 100px ;
12
+ margin-bottom : 100px ;
13
+ margin-right : 50px ;
14
+ margin-left : 50px ;
15
+ }
16
+
17
+ </ style >
18
+
19
+ < title > CSS Margin</ title >
20
+
21
+ </ head >
22
+
23
+ < body >
24
+
25
+ < h1 > CSS Margin</ h1 >
26
+
27
+ < h4 > Margins go between the border and the outline. You may use negative values to overlap content.</ h4 >
28
+
29
+ < p > paragraph with no specified margins.</ p >
30
+
31
+ < p class ="margin "> paragraph with specified margins.</ p >
32
+
33
+ </ body >
34
+
35
+ </ html >
You can’t perform that action at this time.
0 commit comments