分享web开发知识

注册/登录|最近发布|今日推荐

主页 IT知识网页技术软件开发前端开发代码编程运营维护技术分享教程案例
当前位置:首页 > 技术分享

css网页布局

发布时间:2023-09-06 01:40责任编辑:蔡小小关键词:网页布局

1.基础布局

行布局

<!DOCTYPE html><html><head> ???<title></title> ???<meta charset="utf-8"> ???<style type="text/css"> ???????body{margin:0;padding: 0;color:#fff; ?text-align: center;font-size: 16px} ???????.header{width: 100%;height: 50px;background: #333;margin: 0 auto; line-height: 50px; position: fixed;} ???????.banner{width: 800px;height: 300px;background: #30a457;margin: 0 auto;padding-top: 50px;} ???????.container{width: 800px;height: 1000px;background: #4c77f2;margin: 0 auto;} ???????.footer{width: 800px;height: 100px;background: #333;margin :0 auto;line-height: 100px;} ???</style></head><body> ???<div class="header">这是页面的头部</div> ???<div class="banner">这是页面的banner图</div> ???<div class="container">这是页面的内容</div> ???<div class="footer">这是页面的底部</div></body></html>

css网页布局

原文地址:https://www.cnblogs.com/code1992/p/8372839.html

知识推荐

我的编程学习网——分享web前端后端开发技术知识。 垃圾信息处理邮箱 tousu563@163.com 网站地图
icp备案号 闽ICP备2023006418号-8 不良信息举报平台 互联网安全管理备案 Copyright 2023 www.wodecom.cn All Rights Reserved