hallo @ all
css:
quellcode:
aber irgendwie geht die schriftgröße nicht... mein freund hats gelöst, in dem er font-size in table.rahmen reingeschrieben hat.... bsp: www.8ung.at/tommi/
mfg
css:
PHP-Code:
body{
text-decoration: none;
color: black;
font: 20px Arial;
}
oder
body{
text-decoration: none;
color: black;
font-family: Arial;
font-size: 20px;
}
table.rahmen {
border: 1px solid black;
width: 35%;
}
.links{
border: 1px dotted Black;
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
.inhalt{
border: 1px dotted Black;
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
}
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Unbenanntes Dokument</title> <link href="sid.css" rel="stylesheet" type="text/css"> </head> <body> <table class="rahmen" cellspacing="10px" align="center"> <tr> <td class="links" width="100%"> <a href="#">/.link1</a> /.link2 <br /> </td> </tr> <tr> <td colspan="2" class="inhalt"> [inhalt] <br /> </td> </tr> </table> </body> </html>
mfg
EDIT:
@mrhappiness: ... hab mich verdrückt...
Kommentar