SEO Software
Closed Thread
Results 1 to 3 of 3

Thread: Unfamiliar CSS Symbols

  1. #1

    Default Unfamiliar CSS Symbols

    Hi all
    I've seen the use of "*", ">" and "," in CSS sample pages and templates on help sites. What do they mean and how are they used?


  2. SEO Software

  3. #2
    Fulltime Member Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan has a reputation beyond repute Alan's Avatar
    Join Date
    Jan 2009
    Location
    Ayr. Scotland
    Posts
    766
    Thanks
    26
    Thanked 62 Times in 57 Posts
    Blog Entries
    1

    Default

    Sounds like you need some guidance in CSS, try these pages for help CSS Tutorial and CSS Tutorial.


    Seen a good post - give some reputation
    Keeping the forum clean - SPAMMERS BEWARE!!

  4. #3

    Default

    Those are advanced CSS selectors. * denotes a wildcard, such as when I do this:

    Code:
    * {
    margin: 0;
    padding: 0;
    }
    Which constitutes a global CSS reset; however, it should be avoided as it puts strain on the server to render all of it.

    The > is a selector, such as ul > li, and such.

    The , just separates values, such as a, a:hover, which will have common properties.

Closed Thread

Similar Threads

  1. 20 Logo Designs Featuring Animal Symbols
    By decipher in forum Design and Development
    Replies: 0
    Last Post: 10-02-2009, 03:41 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts