KnowlegeZone.com, Share knowledge Gain knowledge
New Articles:
     

Home > Miscellaneous : Css align text left and right within one div

Article By: Saqib   Date: 11/18/2009

Css align text left and right within one div

Lets say if you have to align text left and right within one line/div, then here is how you do it.

<style>

 .clear {

 clear:both;
 }


.left {

  float:left;
  text-align:left;
}

.right {

  float:right;
  text-align:right;
}

</style>

<div class="clear"></div>

<div class="row">

 <div class="left">Hello I'm Left</div>
 <div class="right">Hello I'm right</div>
</div>

<div class="clear"></div>

 

 



Share |


No comments posted.
Post Comment or Solution   OR   Sign in using Google/Aol/Yahoo/Msn/OpenID
Your Name:  
Your Email:  
Comments:
 
Please Verify:
(Type Answer)