<h1 id="header"> Fejléc </h1> <div id="content"> Tartalom </div> <div id="sidebar"> Oldalsáv </div> <div id="footer"> Lábléc </div>
#header { background: red; margin: 0; padding: 0; } #content { background: blue; color: #fff } #sidebar { background: green; color: #fff } #footer { background: brown; }
<div id="container"> <h1 id="header"> Fejléc </h1> <div id="content"> Tartalom </div> <div id="sidebar"> Oldalsáv </div> <div id="footer"> Lábléc </div> </div>
body { text-align: center; } #container { width: 500px; margin: 0 auto; text-align: left; } #header { background: red; margin: 0; padding: 0; } #content { background: blue; color: #fff } #sidebar { background: green; color: #fff } #footer { background: brown; }
body { text-align: center; } #container { width: 500px; margin: 0 auto; text-align: left; } #header { background: red; margin: 0; padding: 0; } #content { background: blue; color: #fff; width: 350px; float:left; } #sidebar { background: green; color: #fff; width: 150px; float:left; } #footer { background: brown; clear: left;}
<div id="container"> <h1 id="header"> Fejléc </h1> <div id="content"> <h2>Tartalom</h2> <p> Ez lesz weblapunk szövege... </p> </div> <div id="sidebar"> Oldalsáv </div> <div id="footer"> Lábléc </div> </div>
body { text-align: center; } #container { width: 500px; margin: 0 auto; text-align: left; background: url(bg.gif) repeat-y; } #header { background: red; margin: 0; padding: 0; } #content {background: blue;color: #fff; width: 350px; float:left; } #sidebar {background: green;color: #fff; width: 150px; float:left; } #footer { background: brown; clear: left;}
<div id="content"> <h2>Tartalom</h2> <p> <img src="loverss.jpg" class="right"/>Ez lesz weblapunk szövege... </p> <p> Egy másik bekezdés </p> </div>
#content h2 { font-size: 1.2em; } #content p { font-size: 1em; }
#content h2, #content p { margin: 5px; } #content h2 { font-size: 1.2em; } #content p { font-size: 1em; }
#content h2, #content p { margin: 5px; } #content h2 { font-size: 1.2em; } #content p { font-size: 1em; } #content img.right { float: right; border: 1px solid #000; padding: 1px; background: #f00; }