problem with HTML tags

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • maheshgupta0248
    New Member
    • Oct 2008
    • 14

    problem with HTML tags

    Hi..
    Im have designed a webpage which contains a table that contains 8 rows, each row will contain S.No, ColA, IP Address, ColB, ColC, ColD, ColE, ColF.
    IP Address contains internally 4 textboxes to fill the IP Address. Now I have fixed the size of each column to 50 and IP Address column to 200 px as it contains 4 textboxes.
    I have desgined the page with Medium, the 4 textboxes are displayed in a single line when the text size is normal, but when the text size is changed to Largest or Larger, the 4 text boxes in displayed in 2 lines. I have tried a lot to solve but couldnt. Can anyone please tell me why this happens. I want it very urgently.

    Thanks in advance
  • clain
    New Member
    • Feb 2007
    • 79

    #2
    simple give nowrap="nowrap" in the <td> of ip address column.. see the example

    <td nowrap="nowrap" > <input ... >192.16.0.01</input ... ><input>192.16. 0.01</input>...</td>


    nowrap="nowrap" will make the contents of the column in one single line..

    Enjoy coding!!!

    Comment

    Working...