View Single Post
Old 11-06-2015, 05:34 PM   #1147
Doitsu
Grand Sorcerer
Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.Doitsu ought to be getting tired of karma fortunes by now.
 
Doitsu's Avatar
 
Posts: 5,737
Karma: 24031401
Join Date: Dec 2010
Device: Kindle PW2
Entweder Du erstellst eine dreispaltige Tabelle ohne Rahmen oder Du nimmst Floats.

Zum Beispiel:

Code:
<body>
<div class="left"><p>Lorem ipsum dolor sit amet</p>
</div>

<div class="right"><p>Lorem ipsum dolor sit amet</p>
</div>

<p class="firstpara">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla ac tellus nunc. Phasellus imperdiet leo metus, et gravida lacus.</p>
</body>
Code:
div.left {
    float: left;
    width: 30%;
}

div.right {
    float: right;
    width: 30%;
}

p.firstpara {
    clear: both;
}
.
Doitsu is offline   Reply With Quote