Heim > Web-Frontend > CSS-Tutorial > Hauptteil

Beispielcode für eine CSS-Layoutseite

高洛峰
Freigeben: 2017-03-28 10:45:42
Original
2801 Leute haben es durchsucht

Erstellen Sie die CSS-Datei wie folgt:

@charset "utf-8";
/* CSS Document */
*{
    margin:0px;
    padding:0px;
    border:0px;
}
#box{
    width:1100px;
    height:760px;
    margin:auto;
}
#hen
{
    width:1100px;
    height:160px;
    background-color:#936;
}
#zuo{
    width:250px;
    height:500px;
    margin-top:10px;
    background-color:#03C;
    float:left;
    margin-bottom:10px;
}
#zhong-1{
    width:262px;
    height:300px;
    margin-top:10px;
    margin-left:10px;
    float:left;
    background-color:#000;
}
#zhong-2{
    width:262px;
    height:300px;
    margin-top:10px;
    margin-left:10px;
    float:left;
    background-color:#000;
}
#xia{
    width:544px;
    height:190px;
    background-color:#03C;
    margin-top:10px;
    float:left;
    margin-bottom:10px;
}
#you{
    width:295px;
    height:500px;
    margin-left:10px;
    margin-top:10px;
    background-color:#3F6;
    float:right;
    margin-bottom:10px;
}
#dibu
{
    width:1100px;
    height:50px;
    margin-top:10px;
    background-color:#CF3;
    clear:both;
}
Nach dem Login kopieren

HTML-Datei wie folgt:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS排版页面</title>
<link href="css/63301.css" rel="stylesheet" type="text/css" />
</head>
 
<body>
<div id="box">
    <div id="hen"></div>
    <div id="zuo"></div>
    <div id="zhong-1"></div>
    <div id="zhong-2"></div>
    <div id="you"></div>
    <div id="xia"></div>
    <div id="dibu"></div>
    
</div>
</body>
</html>
Nach dem Login kopieren

Der endgültige Effekt ist wie folgt:

Beispielcode für eine CSS-Layoutseite

Das obige ist der detaillierte Inhalt vonBeispielcode für eine CSS-Layoutseite. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
css
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage