Results 1 to 2 of 2

Thread: A quick question.....

  1. #1
    Join Date
    Jun 2006
    Posts
    1

    A quick question.....

    im quite new to webdesign.. I was just wondering how on (www.asos.com) they make the lines which go horizontally across the top of the page as well as the line which conncets to this and runs verically along the left hand side ()

    thanks Kiran

  2. #2
    Join Date
    Jun 2006
    Location
    England
    Posts
    130
    its done with Cascading Style Sheets CSS for short, basically with CSS you can alter just about anything. one thing you can alter are single borders of a element or container, so here they would have just made one border solid eg.

    .rightside { border-right-style : solid; border-right-width : 5px; }

    this will give anything using the class rightside a solid righthand border 5 pixels thick
    that is done like this

    <div class="rightside">

    anyway read up more about it at http://www.w3schools.com/css/default.asp
    You shouldn't design for designers, or design for your boss. Good design is about problem-solving under constraints - design has to have a goal of achieving some purpose. Jakob Nielsen

Posting Permissions

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