You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

37 lines
393 B

/* using background colours to demonstrate the box model */
#a1 {
background: blue;
color: white;
}
#a2 {
background: orange;
display: inline;
}
#a3 {
background: black;
color: yellow;
}
#a4 {
background: green;
}
#a5 {
background: brown;
}
#a6 {
background: red;
}
#a7 {
background: yellow;
}
#a8 {
background: pink;
display: block;
}