用html+css写一个页脚,并且该页面的文字分为上下两行
时间: 2024-06-06 12:08:15 浏览: 82
<!DOCTYPE html>
<html>
<head>
<title>页脚</title>
<style type="text/css">
#footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
position: absolute;
bottom: 0;
width: 100%;
}
#footer .upper {
font-size: 20px;
margin-bottom: 10px;
}
#footer .lower {
font-size: 12px;
}
</style>
</head>
<body>
<div id="footer">
<div class="upper">上面的文字</div>
<div class="lower">下面的文字</div>
</div>
</body>
</html>
阅读全文