- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
=----css----
table{
border:0px; /* border="0" */
border-collapse:collapse; /* cellspacing="0" */
height: 100%;
width: 100%;
}
table td{
padding:0px; /* cellpadding="0" */
}
.inputMsg{
width: 100%;
color: #040253;
border:1px solid #096;
}
----html-----
<table><tr>
<td>time</td>
<td><input class="inputMsg" name="msg" type="text" maxlength="255"></td>
<td><a href="#" onclick="refreshChat(window.document.chatSend.msg.value); window.document.chatSend.msg.value='';window.document.chatSend.msg.focus(); return false;" class="inputEnter"></a></td>
</tr></table>