13 lines
227 B
CSS
13 lines
227 B
CSS
|
div.purple {
|
||
|
background-color: purple;
|
||
|
color: white;
|
||
|
padding: 10px;
|
||
|
border: solid 4px blue;
|
||
|
margin: 20px;
|
||
|
text-align: center;
|
||
|
font-size: 150%;
|
||
|
}
|
||
|
h1 {
|
||
|
background-color: black;
|
||
|
color: bisque;
|
||
|
}
|