Menu

Newbie question

2008-03-06
2012-11-13
  • Nobody/Anonymous

    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?

     
    • Rocky

      Rocky - 2008-03-07

      You need ';' after font-size: 300 ;)

      h1
      {
      text-align: center;
      font-size: 300;
      letter-spacing: 10px;
      }