Can any body share some video tutorials of CSS

Discussion in 'CSS' started by beven, Nov 10, 2010.

  1. #1
    Hi,
    Can any body share with me free video lecture of CSS & some assignment as i want to get expertise in this language......
     
    beven, Nov 10, 2010 IP
  2. Pandadan

    Pandadan Active Member

    Messages:
    257
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    98
    #2
    books is not in trend?)
     
    Pandadan, Nov 10, 2010 IP
  3. beven

    beven Well-Known Member

    Messages:
    483
    Likes Received:
    1
    Best Answers:
    1
    Trophy Points:
    113
    #3
    There is no doubt that books are more important but i want to have visual expression. However if u have books can share with me.
     
    beven, Nov 10, 2010 IP
  4. GWiz

    GWiz Peon

    Messages:
    359
    Likes Received:
    17
    Best Answers:
    0
    Trophy Points:
    0
  5. shahilroyhere

    shahilroyhere Well-Known Member

    Messages:
    189
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    130
  6. workingsmart

    workingsmart Well-Known Member

    Messages:
    411
    Likes Received:
    12
    Best Answers:
    9
    Trophy Points:
    120
    #6
    Plus videos teach you other coders' habits.... Find your own way, your own style.... Coding is like signing your name... Eventually you can tell who coded what just by looking at the source code... :)

    Cheers!~
     
    workingsmart, Nov 10, 2010 IP
  7. ronc0011

    ronc0011 Peon

    Messages:
    85
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    CSS is probably the easiest of all web elements to learn. There are hundreds of tutorials on CSS on the web.

    For me the biggest hurdle was learning the differences between inline and external style sheets. I find the external style sheets make it easier in the beginning to differentiate between what is html specific and what is purely CSS. When you put your CSS in the page you have to declare the styles either in the head of the document or inline using a style attribute in the particular tag. Whereas in an external style sheet it's all pure CSS i.e.

    
    .myHeaderTag
    {
       float:left;
       width:100%;
       height:150px;
       min-width: 800px;
       min-height:150px;
       margin:0px;
       padding: 15px 20px 20px 15px;
       background-color:#9a55ff;
    }
    
    Code (markup):
    Then in your document you link it to you style sheet with this in the head section of the document:

    <link href="cssFileName.css" rel="stylesheet" type="text/css" />
    Code (markup):
    Then for your header you use a div tag and give it your myHeaderTag class like so:

    <div class="myHeaderTag">The stuf fthat goes in your header</div>
    Code (markup):
     
    ronc0011, Nov 18, 2010 IP