1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to Handle Nested divs complex css designs?

Discussion in 'CSS' started by jomillergo, Apr 1, 2011.

  1. #1
    In dreamweaver, it was easy to just right click a table and do split cells either by rows or columns , but when i want to implement it in css based web design, it is getting difficult, Im just a starter, tell me how to create and handle nested divs, is Dreamweaver Mx is a good editor for doing css based designs, any other editors are there for free or buy please give me some information.
     
    jomillergo, Apr 1, 2011 IP
  2. ApocalypseXL

    ApocalypseXL Notable Member

    Messages:
    6,095
    Likes Received:
    103
    Best Answers:
    5
    Trophy Points:
    240
    #2
    Try Dreamweaver CS5 for a change .
     
    ApocalypseXL, Apr 2, 2011 IP
  3. Divisive Cottonwood

    Divisive Cottonwood Peon

    Messages:
    1,674
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Dreamweaver MX is very out of date. You really don't want to be trying to build websites with tables these days.
     
    Divisive Cottonwood, Apr 4, 2011 IP
  4. WebPageMistakes

    WebPageMistakes Well-Known Member

    Messages:
    91
    Likes Received:
    3
    Best Answers:
    1
    Trophy Points:
    110
    #4
    It doesn't matter what editor you use, it can't do all your thinking for you.

    Learn to space out your coding (especially as a beginner) and it makes it so much easier to make sure you have your coding nested properly. e.g.
    
    <div id="wrapper">
         <div id="header">
              header coding
         </div>
         <div id="content">
              content coding
         </div>
         <div id-"footer">
              footer coding
         </div>
    </div>
    HTML:
    Added hint for DW: If you use Commands>>Apply Source Formatting DW will space out your coding for you if you have not been doing this as you go along. :) Makes it easier to see where you have not closed containers or other coding properly.
     
    WebPageMistakes, Apr 4, 2011 IP