Jump to content

cygnet

Member
  • Posts

    15
  • Joined

  • Last visited

Posts posted by cygnet

  1. The biggest difference between CSS2 and CSS3 is that CSS3 has been split up into different sections, called modules. Each of these modules is making it's way through the W3C in various stages of the recommendation process. CSS2 was submitted as a single document with all the Cascading Style Sheets information within it. Because each of the modules is being worked on individually, we have a much wider range of browser support for CSS3 modules.

     

     

  2. hey,

    i'm interested of building a website for a friend of mine but i'm a real beginner.

    i don't have any knowledge but i heard there are many free website builders with a lot of options to design.

    so maybe you guys can help me with that and suggest me a few free builders i can try?

     

    It's a good idea to build a website for friend. I will recommend to go with professional web developer rather to opt for free option. It will be less time consuming and also efficient from business point of view.

     

     

  3. Inline CSS:

     

    Inline styles are the least flexible type of style to implement.

    For example:

    <p style="color: red">

    Paragraph text goes in here </p>

     

    Internal CSS:

     

    With internal stylesheets, a web page's styles are all specified at the top of the page code, within the <head> tag for the page.

    For Example:

    <head>

     

    <style type="text/css">

    h1 {color: blue; font-weight: bold}

    p {color: gray}

    </style>

     

    </head>

×
×
  • Create New...