Posted by dorayme on 06/28/07 00:03
In article <f5u2v3$r7m$02$1@news.t-online.com>,
"Maria Sudderman" <maria_sudxx@gmx.de> wrote:
> I have a problem!
> Ii have a formular, and after the send button is a blank line.
> can i delete this blank line?
>
> <table border="1" width="400" cellspacing="0" cellpadding="0"
> style="border-collapse: collapse" bordercolor="#000000">
> <tr>
> <td>
> <form method="POST" action="--WEBBOT-SELF--">
> <input type="text" name="T1" size="20">
> <input type="submit" value="send" name="B1">
> </form>
> </td>
> </tr>
> </table>
>
This the sort of effect you want:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Test</title>
<style type="text/css">
* {margin: 0; padding: 0}
td {border: 1px solid black}
table {width: 400px}
</style>
</head>
<body>
<table><tr><td>
<form method="POST" action="--WEBBOT-SELF--">
<div><input type="text" name="T1" size="20">
<input type="submit" value="send" name="B1"></div>
</form>
</td></tr></table>
</body>
</html>
?
(You don't need a table for this, try removing all table tags and
see for yourself)
--
dorayme
Navigation:
[Reply to this message]
|