I am trying to create a CSS style sheet and I notice that when I have:
h1 { text-align: center; font-size: 300 letter-spacing: 10px }
The 'text-align:' are 'font-size:' light blue but the 'letter-spacing:' is black. Why is some text blue and some text black?
You need ';' after font-size: 300 ;)
h1 { text-align: center; font-size: 300; letter-spacing: 10px; }
I am trying to create a CSS style sheet and I notice that when I have:
h1
{
text-align: center;
font-size: 300
letter-spacing: 10px
}
The 'text-align:' are 'font-size:' light blue but the 'letter-spacing:' is black. Why is some text blue and some text black?
You need ';' after font-size: 300 ;)
h1
{
text-align: center;
font-size: 300;
letter-spacing: 10px;
}