how to align text center and right
- by Mayur
Hi All,
I m facing problem while aligning two text, one in center and other text in right;
I used a Div to align it:
<div style="text-align:center">
<h1> Sample Heading</h1>
<div style="float:right; text-align:center">
<a href="#">sample link</a>
</div>
</div>
When i used this my heading comes left its not a centrally align properly please tell is this correct way or their any other to handle this scenario
Thanks