搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <style> .header{margin:-8px -8px 0px;background-image:linear-gradient(145deg,#7379ff,#b524ef);color:white;text-align:center;padding:10px;} .container{width:100%} .left{width:15%;float:left;} .body{width:65%;float:left;background-color:pink;padding:5px;} .right{width:15%;float:left;} .footer{margin:-8px;clear:both;background-image:linear-gradient(145deg,#7379ff,#b524ef);color:white;text-align:center;padding:10px;} </style> </head> <body> <div class="header"><h2>基础教程 div.cn</h2></div> <div class="container"> <div class="left"> <p>左边栏</p> </div> <div class="body"> <h1>正文</h1> <p>页面内容在这里</p><p>页面内容在这里</p><p>页面内容在这里</p> <p>页面内容在这里</p><p>页面内容在这里</p><p>页面内容在这里</p> <p>页面内容在这里</p><p>页面内容在这里</p><p>页面内容在这里</p> <p>页面内容在这里</p><p>页面内容在这里</p><p>页面内容在这里</p> <p>页面内容在这里</p> </div> <div class="right"> <p>右边栏</p> </div> </div> <div class="footer"> <p>Footer</p> </div> </body> </html>
运行结果