Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<div style="width: 778 px; margin: 0px auto;">
<!-- zentrierter inhalt -->
<div style="background-color: #e7e7e7;width: 100px;">links</div>
<div style="background-color: #FFFFFF;margin-left: 100px;">main</div>
</div>
Arbeite besser mit float-Angaben (float:left; float:right;)so ungefähr sieht das aus...optimieren kannst du das ja noch ;)Code:<div style="width: 778 px; margin: 0px auto;"> <!-- zentrierter inhalt --> <div style="background-color: #e7e7e7;width: 100px;">links</div> <div style="background-color: #FFFFFF;margin-left: 100px;">main</div> </div>
<div style="width:800px; height:300px; margin:0px;">
<!--Zentrieren mit float:left;-->
<div style="width:250px; height:100%; float:left;">Links</div>
<div style="width:550px; height:100%; float:left;">Content</div>
</div>
* {
margin: 0px;
padding: 0px;
}
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="778px" colspan="2"></td>
</tr>
<tr>
<td width="100px" style="background-color:#e7e7e7;"></td>
<td></td>
</tr>
</table>
Also wenn du es mit einer Tabelle machen willst dann sieht der Code so aus:
Also ich nehm immer lieber Tabellen ...Code:<table border="0" cellpadding="0" cellspacing="0"> <tr> <td width="778px" colspan="2"></td> </tr> <tr> <td width="100px" style="background-color:#e7e7e7;"></td> <td></td> </tr> </table>