www.webdeveloper.com
+ Reply to Thread
Results 1 to 2 of 2

Thread: HTML Formatting

  1. #1
    Join Date
    Sep 2012
    Posts
    5

    HTML Formatting

    I have the following html code and would like to have some help formatting it.
    i need it to be in this format

    Paul Jean
    Mat Frank

    Instead of Paul Jean Mat Frank.

    I needs to be done without using the <tr> tag again.

    <tr id="_1_1_37" style="display:none">
    <TD CLASS="label" NOWRAP VALIGN="MIDDLE">Paul </TD>
    <td width="10" align="right"><input CLASS="valueEditable"type="text" name="_1_1_37_1" ID="_1_1_37_1" value="[LL_FormTag_1_1_37_1 /]"></td>
    <TD CLASS="label" NOWRAP VALIGN="Right"></TD>

    <TD CLASS="label" NOWRAP VALIGN="MIDDLE">Jean</TD>
    <td width="10" align="right"><input CLASS="valueEditable"type="text" name="_1_1_65_1" ID="_1_1_65_1" value="[LL_FormTag_1_1_65_1 /]"> <br /></td>
    <TD CLASS="label" NOWRAP VALIGN="Right"></TD>

    <TD CLASS="label" NOWRAP VALIGN="MIDDLE">Mat </TD>
    <td width="10" align="right"><input CLASS="valueEditable"type="text" name="_1_1_64_1" ID="_1_1_64_1" value="[LL_FormTag_1_1_64_1 /]"></td>
    <TD CLASS="label" NOWRAP VALIGN="Right"></TD>

    <TD CLASS="label" NOWRAP VALIGN="MIDDLE">Frank </TD>
    <td width="10" align="right"><input CLASS="valueEditable"type="text" name="_1_1_63_1" ID="_1_1_63_1" value="[LL_FormTag_1_1_63_1 /]"></td>
    <TD CLASS="label" NOWRAP VALIGN="Right"></TD>

    </tr>

  2. #2
    Join Date
    Jun 2009
    Location
    Ankara
    Posts
    113
    HTML Code:
    <table>
    <tr><td>Paul <td>Jean
    <tr><td>Mat <td>Frank
    </table>
    This will validate under HTML 5 or HTML 4.01 Strict. If you are using XHTML, you must used closing tags.

    All those attributes in your row (<tr>) and cell (<td) elements made the markup look COMPLETELY UNREADABLE!

    I bet this HTML is generated from Word or some other document, isn't it?

    Always prepare HTML documents from a text editor. It is not hard to do, and it ultimately be readable.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

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
HTML5 Development Center



Recent Articles