1.使用所学CSS定位布局等内容实现一个上中下(三行)的弹性页面布局。 2.运用盒模型、定位元素和课内外CSS属性等进行网页美化。代码
时间: 2024-02-25 11:52:35 浏览: 114
好的,下面是一个示例代码,实现了一个上中下三行的弹性页面布局,并进行了基本的网页美化:
HTML代码:
```
<!DOCTYPE html>
<html>
<head>
<title>上中下三行弹性页面布局</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<h1>这是头部</h1>
</div>
<div class="main">
<h2>这是内容区域</h2>
<p>这里是网页的主要内容。</p>
</div>
<div class="footer">
<p>这是底部</p>
</div>
</body>
</html>
```
CSS代码:
```
/* 设置页面元素的全局样式 */
* {
box-sizing: border-box; /* 使用border-box盒模型 */
margin: 0;
padding: 0;
}
/* 设置容器元素的样式 */
.header, .footer {
position: absolute; /* 绝对定位 */
width: 100%;
height: 50px; /* 固定高度 */
background-color: #333;
color: #fff;
text-align: center;
line-height: 50px;
}
.main {
position: relative; /* 相对定位 */
min-height: calc(100% - 100px); /* 计算剩余高度 */
padding: 20px;
background-color: #eee;
font-family: Arial, sans-serif;
font-size: 16px;
color: #333;
}
/* 网页美化 */
.header h1 {
font-size: 24px;
}
.footer p {
font-size: 14px;
text-align: center;
}
.main h2 {
margin-bottom: 10px;
font-size: 20px;
font-weight: bold;
}
.main p {
line-height: 1.5;
}
```
注释已经在代码中标明,可以参考理解。
阅读全文