Registriert seit: 26. Mai 2004
3.159 Beiträge
|
AW: HTML - Tabellen Zeilen Abstand verringern
26. Apr 2011, 19:06
Code:
<!DOCTYPE html>
< html lang="de">
<head>
<title> hallo </title>
</head>
<body>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>Vorname</td>
<td>Wohnort</td>
</tr>
<tr>
<td style="padding-right: 10px;">
<input type="text" name="name" style="width: 120px;">
</td>
<td>
<input type="text" name="Wohnort" style="width: 120px;">
</td>
</tr>
<tr>
<td>
<input type="checkbox">
Daten sichern
</td>
</tr>
</table>
</body>
</ html>
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
Geändert von s.h.a.r.k (26. Apr 2011 um 19:11 Uhr)
|