Link to home
Start Free TrialLog in
Avatar of cofactor
cofactor

asked on

HTML display problem

Hi, I have a HTML display problem . the two textfields are not alligned properly.

Here I'm attaching  the code  and the desired display expected-display.png  in zip file. Could you please have a look into that and suggest me what needs to be done to get the desired display.
html-code.zip
Avatar of cofactor
cofactor

ASKER

comments please
you can use 2 <td> for label and input type. For example this line:

<td width="89%">Remark&nbsp;&nbsp;<input name="remark" type="text"></td>

can be split into 2 <td> like this:

<td>Remark</td>
<td width="89%"><input name="remark" type="text"></td>

do the same thing on "Assign To:" label.
ASKER CERTIFIED SOLUTION
Avatar of wuyinzhi
wuyinzhi
Flag of Indonesia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
This solved my problem