Like us on Facebook and stand a chance to win pen drives!

How to split ul into multiple columns




ul{
width: 300px;
overflow: hidden;
}
 
ul li{
float: left;
width: 75px;
}

1 comments:

HTML Email with Codeigniter

HTML Email with Codeigniter


$this->email->to( 'abc@gmail.com' );
$this->email->subject( 'Test' );
$this->email->message( $this->load->view( 'email/message', $data, true ) );
$this->email->send();

0 comments:

Copyright © 2012 The Code Junction.