Html table not displaying the Second row

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • raghurocks
    New Member
    • May 2012
    • 46

    Html table not displaying the Second row

    Code:
    <table border="1" cellpadding="5" cellspacing="5" width="761">
      <tr>
        <td width="149">
          <font color="#000000" size = "3">
            <strong>
              Instructor Requ
            </strong>
          </font>
        </td>
        <td align="left">
          <font color="#000000" size="3">
            <strong>
              TM Notes for Instructor Logistics Memo
            </strong>
          </font>
        </td>
      </tr>
      <tr>
        <td bgcolor="#C0C0C0">
          <font color="#000000">
            <strong>
              Hand carry to class
            </strong>
          </font>
        </td>
        <td align="left">
          <font color="#000000">
            <strong>
              <%=rs2.fields("Instructor_HandCarry") %>
            </strong>
          </font>
        </td>
      </tr>
      <tr>
        <td bgcolor="#C0C0C0">
          <font color="#000000">
            <strong>
              Others
            </strong>
          </font>
        </td>
        <td align="left">
          <font color="#000000">
            <strong>
              <%=rs2.fields("Instructor_Other") %>
            </strong>
          </font>
        </td>
      </tr>
    </table>
    Last edited by Frinavale; Jul 27 '12, 07:51 PM. Reason: Please use code tags when posting code. Added indentation to code for readability.
  • Rabbit
    Recognized Expert MVP
    • Jan 2007
    • 12517

    #2
    The table displays fine for me. You may have a style that is hiding it.

    Comment

    • Exequiel
      Contributor
      • Jul 2012
      • 288

      #3
      your code for your table is fine. . . the second row displaying properly...

      Comment

      • lyodmichael
        New Member
        • Jul 2012
        • 75

        #4
        can you explain the problem ? the table is fine.

        Comment

        • Frinavale
          Recognized Expert Expert
          • Oct 2006
          • 9749

          #5
          If you're ever having problems like you have described, consider running your HTML through the W3C Markup Validator. It will point out any HTML or CSS validation errors in your code that may be causing the some browsers to display things strangely while other browsers look fine.

          -Frinny

          Comment

          Working...