html怎样布局完美,⼀篇⽂章带你了解HTML的⽹页布局结构
⼤家好,我是IT共享者,⼈称⽪⽪。这篇我们来讲讲CSS⽹页布局。
⼀、⽹页布局
⽹页布局有很多种⽅式,⼀般分为以下⼏个部分:头部区域、菜单导航区域、内容区域、底部区域。
1. 头部区域
头部区域位于整个⽹页的顶部,⼀般⽤于设置⽹页的标题或者⽹页的 logo:
html>
CSS 项⽬(runoob)
body {
margin: 0;
}
/* 头部样式 */
.header {
background-color: #f1f1f1;
padding: 20px;
text-align: center;
}
头部区域
2. 菜单导航区域
菜单导航条包含了⼀些链接,可以引导⽤户浏览其他页⾯:例
/* 导航条 */
.topnav {
overflow: hidden;
background-color: #333;
}
/* 导航链接 */
.topnav a {
float:left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* 链接 - 修改颜⾊ */
.topnav a:hover {
background-color: #ddd;
color: black;
}
3. 内容区域
网页float是什么意思内容区域⼀般有三种形式:
1 列:⼀般⽤于移动端。
2 列:⼀般⽤于平板设备。
3 列:⼀般⽤于 PC 桌⾯设备。
不相等的列
不相等的列⼀般是在中间部分设置内容区域,这块也是最⼤最主要的,左右两次侧可以作为⼀些导航等相关内容,这三列加起来的宽度是100%。
例:
.column{
float:left;
}
/
* 左右侧栏的宽度 */
.column.side {
width: 25%;
}
/* 中间列宽度 */
.column.middle {
width: 50%;
}
/* 响应式布局 - 宽度⼩于600px时设置上下布局 */
@media screen and(max-width: 600px) {
.column.side, .column.middle {
width: 100%;
}
}
4. 底部区域
底部区域在⽹页的最下⽅,⼀般包含版权信息和联系⽅式等。
.footer {
background-color: #F1F1F1;
text-align: center;
padding: 10px;
}
⼆、响应式⽹页布局
通过以上等学习我们来创建⼀个响应式等页⾯,页⾯的布局会根据屏幕的⼤⼩来调整:案例
html>
项⽬
* {
box-sizing: border-box;
}
body {
font-family: Arial;
padding: 10px;
background: #f1f1f1;
}
/* 头部标题 */
.header {
padding: 30px;
text-align: center;
background: white;
}
.header h1 {
font-size: 50px;
}
/* 导航条 */
.topnav {
overflow: hidden;
background-color: #333;
}
/* 导航条链接 */
.topnav a {
float:left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* 链接颜⾊修改 */
.topnav a:hover { background-color: #ddd; color: black;
}
/* 创建两列 */
/* Leftcolumn*/
.leftcolumn {
float:left;
width: 75%;
}
/* 右侧栏 */
.rightcolumn {
float:left;
width: 25%;
background-color: #f1f1f1; padding-left: 20px;
}
/* 图像部分 */
.fakeimg {
background-color: #aaa; width: 100%;
padding: 20px;
}
/* ⽂章卡⽚效果 */
.card {
background-color: white; padding: 20px;
margin-top: 20px;

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。