Results 1 to 2 of 2

Thread: Can I align text on left& right on the similar line in HTML?

  1. #1
    Edgar Boucher is offline Member
    Join Date
    May 2009
    Posts
    93
    Rep Power
    4

    Default Can I align text on left& right on the similar line in HTML?

    Give a few solutions for this
    What steps will be required to do this please reply me as soon as possible
    If you are having any proposals then answer me.
    Thanks to you all in advance

  2. #2
    Edwin Boje is offline Member
    Join Date
    May 2009
    Posts
    81
    Rep Power
    4

    Default

    Utilize the table tags and their quality. Generate a table by one row and two cells. Place the text in every cell, one aligned to the left, and other to the right. Utilize the "valign" to make sure the texts emerge on the similar line. Identify 50% as the TD or cell width if you desire the texts to obtain up equal space in the table. Do not add a border, or set the border width to 0 if you want the table to be invisible. Add formatting as preferred.
    Example:

    <table width="500" align="center" border="1">
    <tr>
    <td width="50%" vAlign="top">
    <p align="left">Left-Aligned Text<p>
    </td>
    <td width="50%" vAlign="top">
    <p align="right">Right-Aligned Text</p>
    </td>
    </tr>
    </table>

Similar Threads

  1. Can I align text on left& right on the similar line in HTML
    By CarterBaker in forum General Internet Terms
    Replies: 1
    Last Post: 07-04-2010, 02:36 PM
  2. Right align text with html
    By HernandezOrtiz in forum General Internet Terms
    Replies: 1
    Last Post: 07-04-2010, 01:33 PM
  3. Can I right align text utilizing html
    By FosterWood in forum General Internet Terms
    Replies: 1
    Last Post: 06-03-2010, 02:25 PM
  4. Adding a line in html
    By BrooksGray in forum General Internet Terms
    Replies: 1
    Last Post: 06-03-2010, 02:22 PM
  5. Controlling the line break in the HTML code sensibly
    By techpro in forum Everything Else
    Replies: 0
    Last Post: 04-04-2008, 10:13 AM

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
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48