Hi!
Wie bekomme ich diese Abstände weg?
http://www.dmaster.de/Bilder/tabellen-problem.GIF
Das ist der Code von der Seite:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<table border="0" class="top">
<tr>
</tr>
</table>
<table border="0" class="menuleiste">
<tr>
</tr>
</table>
<table border="0" cellpadding="0" class="inhalt">
<tr>
<th scope="col"><table valign="top" border="0" cellpadding="0" class="menu">
<tr>
</tr>
</table></th>
</tr>
</table>
<table border="0" cellpadding="0" class="footer">
<tr>
</tr>
</table>
</body>
</html>
Wie bekomme ich diese Abstände weg?
http://www.dmaster.de/Bilder/tabellen-problem.GIF
Das ist der Code von der Seite:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Unbenanntes Dokument</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<table border="0" class="top">
<tr>
</tr>
</table>
<table border="0" class="menuleiste">
<tr>
</tr>
</table>
<table border="0" cellpadding="0" class="inhalt">
<tr>
<th scope="col"><table valign="top" border="0" cellpadding="0" class="menu">
<tr>
</tr>
</table></th>
</tr>
</table>
<table border="0" cellpadding="0" class="footer">
<tr>
</tr>
</table>
</body>
</html>
Du musst immer bei <table> cellspacing="0" einfügen!
Also so:
<table cellspacing="0">
Ich hoffe, ich konnte dir helfen!
Greez
längchen
Also so:
<table cellspacing="0">
Ich hoffe, ich konnte dir helfen!
Greez
längchen
Warum machst Du das eigentlich mit Tabellen und nicht mit <div>s?
Müsste irgendwie so aussehen Auf Abmessungen etc. mal keine Rücksicht genommen:
und die CSS Datei dazu:
Müsste irgendwie so aussehen Auf Abmessungen etc. mal keine Rücksicht genommen:
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01//EN'>
<head>
<title>Titel</title>
<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'>
<style type='text/css'>
<!--
@import url(page.css);
-->
</style>
</head>
<body>
<div id="container">
<div id="header">Header</div>
<div id="menueleistequer">Menueleiste horizontal</div>
<div id="menueleiste">Menueleiste senkrecht</div>
<div id="content">Inhalt</div>
<div id="footer">Footer</div>
</div>
</body>
</html>
und die CSS Datei dazu:
#header { height: 80px; }
#menueleistequer {
width: 99%;
height: 20px;
border-left-width:1px;
border-left-style:solid;
border-color:red;
border-right-width:1px;
border-right-style:solid;
border-bottom-width:1px;
border-bottom-style:solid;
border-top-width:1px;
border-top-style:solid
}
#menueleiste{
width: 20%;
height: 700px;
float:left;
border-left-width:1px;
border-left-style:solid;
border-color:red;
border-right-width:1px;
border-right-style:solid;
border-bottom-width:1px;
border-bottom-style:solid;
}
#content{
height: 700px;
width: 79%;
float:left;
border-color:red;
border-right-width:1px;
border-right-style:solid;
border-bottom-width:1px;
border-bottom-style:solid;
}
#footer {
height: 20px;
border-left-width:1px;
border-left-style:solid;
border-color:red;
border-right-width:1px;
border-right-style:solid;
border-bottom-width:1px;
border-bottom-style:solid;
}
Ich finde Tabellen irgendwie schöner. Es ist zwar nicht mehr ganz zeitgemäß, aber der Standart.
glaube nicht dass du den abstand in ner tabelle wegbekommst... du müsstest mit border=0 machen und dann mit css nen rahmen um den inhalt ziehn... womit wir eigentlich wieder bei <div> wärn^^
Logge dich ein um einen Beitrag zu schreiben.