tangopersonals

match com uk

dating in san diego

miami online dating

100 dating free international

wilmington nc singles

online dating surveys

simi valley singles

austin texas dating

mexico dating

senior citizen singles

sex woman com

lesbian dating online

spy cam girls

jacksonville online dating

new orleans swing clubs

how to meet single men

for sex dates

escort service male

find sex buddy

colorado swinger

one night stand music

mail local single

dating service new zealand

adultmatch com

yahoo personals review

london dating service

matchmaker agency

birmingham swinger

find date

married women personals

swinger clubs tampa

singles brisbane

flirt nite

poconos resorts couples

curious personals

nowtoronto com adult

swing com br

dating service seattle

big black booty women

boating singles

manhattan jewish singles

single christian cowboys

find swinger

online dating single parents

sex in my area

dating sonoma county

adultsite

woman seeking men in bangalore

big hot women

jewish singles events new york

true match powder loreal

nudists girl

www i love mature com

cheating wives

lesbian meet

swinger clubs ontario

dating in essex

swinging clubs in blackpool

christian singles conference

married looking for

sex chat nz

dating mom single

russian jewish singles

dating service sex

no strings sex contacts

married personals

jewish singles miami

sex phone line

brazil single women

vietnam singles

lds dating site

www swing2us com

german women dating

dating overweight

cuba personals

old women looking for sex

victoria personals

american dating

couples all inclusive resort

maritime singles

chat internet

alternative lifestyle dating

free hot housewives

married affairs

online dating vancouver bc

absolute dating agency

chat rooms singles

uk holidays for singles

singles spiritual

dating com

meet chat

cheap london escort

usa singles

cell phone dating

online christian dating service

singles brighton

sun city singles

singles ski club

one night stand 2007

london swigers

bi sexual encounters of the exxxtreme

busty chat

gospel singles

straight mature men

indian men dating american women

live latinas

sex meat

female looking for sex

older women younger men

sex finder

sex old woman

dating advertisements

sexsearch login

singles site

white dating site

prostitutes for hire

singles spas

vibrator discreet

overweight dating

ivy league dating sites

adultfriend finders com

asian dating service

sexsearch com

ames iowa singles

singles pearl

singles minnesota

hook up com

dating ireland com

super singles

alternative lifestyle personals

ameture match

singles profiles

fort smith singles

escort service istanbul

married women looking for men

live web cam girls

dating online community

canadian sex personals

love adult

women seeking men in virginia

mexico singles

hook up with

swinger magazine

phone sex services

www dirty dates com

swinger events

sierra singles

free single dating site

leather and latex

singlesex

girl dating sim

maturewomen com

discrete affairs

www gaychat

sex & swinger personals

personal free ads

singles show

sex classified

adult devon

cheating wives com

it sex

livelinks chat line

www cheatingwives com

dating international

perfect match test

sex dates europe

meet thai women

girls online dating

fat dating service

friend finder chat

asian escort san diego

norfolk escort

www sexwoman com

matchmaker california

swinger clubs in los angeles

squirt personals

to 20 singles

lesbian dating on line

free date site

dating web site

personals profiles

how to find single women

find a gay friend

japanese video adult

personals salon com

american christian dating

matchmaker phone

tn date

2 singles

singles prescott az

dates of admission

octitans com personals

big booty black woman

date big girls

www sexdating

adultreviews

personals and dating

date single women

personal photo sites

2 Column CSS Trick

Sazzad Hossain April 18, 2011 0

In web design two-column sites are very widely used. One trouble that most designers encounter when coding their layout is having the two columns work together in harmony. Often one bumps the other down or floats over one another. The purpose of this simple tutorial is to make the two columns work together. To achieve this you will need to create 4 class (3 of which are containers). The first is the wrapper which will hold the 2 floating containers. The main trick behind this method is that instead of having the two floating columns float in opposite directions, they both float to the left.

Now let’s start with the wrapper. Our wrapper will contain our full dimension to prevent overflow; let’s call this float_container. Now let’s give it some definitions:

1
2
3
4
.float_container {
width: 600px;
margin: 0 auto; /*centers the container to the screen*/
}
.float_container {
width: 600px;
margin: 0 auto; /*centers the container to the screen*/
}

Now let’s create the left most column let’s call it column1 and give it some definitions:

1
2
3
4
.column1 {
float: left;
width: 200px;
}
.column1 {
float: left;
width: 200px;
}

Now let’s create the second column, column2, and give it definitions:

1
2
3
4
5
.column2 {
float: left;
width: 390px; /*Note 1*/
height: 1%; /*Note 2*/
}
.column2 {
float: left;
width: 390px; /*Note 1*/
height: 1%; /*Note 2*/
}

*Note 1 – I purpose did not add 10px for the sake of keeping the float in tact, if you use the exact 400px, it will not float next to column 1 on certain browsers.
*Note 2 – This 1% is to fight and fix the peekaboo bug that IE6 presents us.

Now to clear all of our floats at the end of the document so that it does not interfere with the rest of our page:

1
2
3
4
5
6
7
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

Now let’s add the html

1
2
3
4
5
6
7
8
9
<div class="float_container clearfix">
   <div class="column1">
      Column 1 content
   </div>
 
   <div class="column2">
      Column 2 content
   </div>
</div>
<div class="float_container clearfix">
   <div class="column1">
      Column 1 content
   </div>

   <div class="column2">
      Column 2 content
   </div>
</div>

You can see how this works here: http://www.sazzadhossain.org/demo/projects/jorsek/column_theory.html

The method was first developed by 960gs but then I modified it for Jorsek Software LLC. back when I worked for them.