Results 1 to 2 of 2

Thread: Need help with 3 column form

  1. #1
    Join Date
    Sep 2007
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Need help with 3 column form

    I'm kinda new to CSS and I need to create a nice 3 column form with at least 3 rows. Can anyone please help? this kind of info is hard for me to find.

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Code:
    <style type="text/css">
    form {
        width: 100&#37;;
    }
    form div#left {
        float: left;
        width: 25%;
    }
    form div#right {
        float: right;
        width: 25%;
    }
    form div#content {
        margin-left: 28%;
        margin-right: 28%;
    }
    div#beneath {
        clear: both;
    }
    </style>
    <form id="3column">
    	<div id="left">
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    		<p>left content</p>
    	</div>
    	<div id="right">
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    		<p>right content</p>
    	</div>
    	<div id="content">
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    		<p>main content</p>
    	</div>
    </form>

Bookmarks

Posting Permissions

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