faqts : Computers : Programming : Languages : JavaScript : DHTML

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

16 of 42 people (38%) answered Yes
Recently 2 of 10 people (20%) answered Yes

Entry

How to create a nested div and separate div in a single page in NN4?

Apr 29th, 2001 00:18
Colin Fraser, anand raj,


Try
<div id="parent">
  Parent stuff here 
    <div id="child1">
       Child 1 stuff here
    </div>
    <div id="child2">
       Child 2 stuff here
    </div>
</div>
<h2>Some Heading Here </h2>
<div id="separatediv">
  Separate div stuff goes here. 
</div>
This should work in all browsers that support the div tag.