Erstellen einer multi-Spalte wie Fußzeile in html5-css3

Muss ich erstellen Sie eine Fußzeile mit drei Spalten. Der folgende code gibt das zweite Bild eher als die erste;

<footer>
    <div id=”footer_links”> </div>
    <div id=”values”>.....</div>
    <div id=”contacts”>.....</div>
    <div id="copyright">.....</div>
</footer>

CSS-code:

footer{
 height: auto;
 padding:1px 15px 1px 20px;
 clear:both;
 }
#footer_links{
float:left;
}
#values{
 float:none;
 padding:0 600px 0 0;
 text-align:justify;
 }
#contacts{
float: right;

}

#copyright{
float:none;
text-align:center;
}

Erstellen einer multi-Spalte wie Fußzeile in html5-css3

Erstellen einer multi-Spalte wie Fußzeile in html5-css3

Wie bekomme ich meine divs zu line-up, richtig, anstatt offset wie im zweiten Beispiel?

  • Also was ist das Problem? Auch Sie sollten Ihre CSS.
InformationsquelleAutor Wepex | 2012-09-17
Schreibe einen Kommentar