对网页设计来说相当新,我认为创建一个带有页眉、段落和粘性页脚的网站基本模型是个好主意,以确保我掌握了一些基础知识:)
我想知道如何将 .paragraph div 垂直和水平居中,以及我应该注意的代码是否存在任何明显的问题或效率低下。我只是想确保我可以编写基本布局而不养成坏习惯。
所以我最终得到了这个css:
.head {
margin: auto;
height: 100%;
width: 100%;
background-color: #000;
color:white;
text-align:center;}
body {
background-color:#99C;
}
.h1 {
font-size:50px;
font-family:Georgia, "Times New Roman", Times, serif;
padding:30px;
}
.paragraph {
color:#FFF;
text-align:center;
background-color:#333;
width:35%;
margin:auto;
margin-top:165px;
padding:10px;
}
* {
margin: 0;
}
html, body {
height: 100%;
}
.wrapper {
min-height: 100%;
/* equal to footer height */
margin-bottom: -70px;
}
.wrapper:after {
content: "";
display: block;
}
.site-footer, .wrapper:after {
/* .push must be the same height as footer */
height: 70px;
}
.site-footer {
background: orange;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
font-size:40px;
line-height:70px;
}
这是它的外观:
提前致谢!!!
亚当 H