Сообщение от person
|
чтобы этот самый input был растянут на всю свою ячейку
|
Как вариант...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1251">
<style type="text/css">
input {
margin: 0;
padding: 0;
width: 100%;
font-size: 30px;
border: 0;
}
.input {
margin: 0;
padding: 0;
border: 1px solid blue;
}
</style>
<script>
</script>
</head>
<body>
<br><br><br><br><br>
<table border="1" width="30%" cellpadding="0" cellspacing="0" style="margin:0 auto;">
<tr>
<td>
<div class='input'>
<input type="text" value="" name="txt2" id="txt2">
</div>
</td>
<td style="width:22px;">
</td>
</tr>
<tr>
<td colspan="2">
</td>
</tr>
</table>
</body>
</html>