• Blogs (9)
    • 📱 236 - 992 - 3846

      📧 jxjwilliam@gmail.com

    • Version: ‍🚀 1.1.0
  • HTML5 & CSS3

    Blogs20122012-02-14


    HTML5 & CSS3

    While searching HTML5’s selector new attributes, I found a helpful website:

    http://html.nhndesign.com/html_guide/?css3

    You can find some useful information about the new features in HTML5 and CSS3, including live examples and browser compatibility. With the reference, I add a CSS class by using selector:

    #contents .box::first-letter {
      font-size: 2.5em;
      color: #990000;
      weight: bolder;
      text-transform: uppercase;
      text-shadow: 0 1px 0 #d1e8ed;
    }

    This will make the first letter of a paragraph to be more eye-catching.