博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简易相应式布局。
阅读量:6190 次
发布时间:2019-06-21

本文共 1524 字,大约阅读时间需要 5 分钟。

简易相应式布局

#pagewrap { width: 980px; margin: 0 auto; background-color: lightgrey; } #header { height: 160px; background-color: lightpink; } #content { width: 600px; float: left; background-color: lightblue; } #sidebar { width: 280px; float: right; background-color: lightcyan; } #footer { clear: both; background-color: lightgreen; }
@media screen and (max-width: 980px) { #pagewrap { width: 95%; } #content { width: 60%; padding: 3% 4%; } #sidebar { width: 30%; } #sidebar .widget { padding: 8% 7%; margin-bottom: 10px; } }
@media screen and (max-width: 650px) { #header { height: auto; } #searchform { position: absolute; top: 5px; right: 0; } #main-nav { position: static; } #site-logo { margin: 15px 100px 5px 0; position: static; } #site-description { margin: 0 0 15px; position: static; } #content { width: auto; float: none; margin: 20px 0; } #sidebar { width: 100%; float: none; margin: 0; } }
@media screen and (max-width: 480px) { html { -webkit-text-size-adjust: none; } #main-nav a { font-size: 90%; padding: 10px 8px; } }
<header> <div id="pagewrap"> <header id="header"> <hgroup> <h1 id="site-logo">Demo</h1> <h2 id="site-description">Site Description</h2> </hgroup> <nav> <ul id="main-nav"> <li><a href="#">Home</a></li> </ul> </nav> <form id="searchform"> <input type="search"> </form> </header> <div id="content"> <article> blog post</article> </div> <aside id="sidebar"> <section> widget</section> </aside> <footer id="footer"> footer</footer> </div> </header>

转载于:https://www.cnblogs.com/gg123/p/7077942.html

你可能感兴趣的文章
Boostrap(2)
查看>>
linux 输入java 出现中文乱码
查看>>
Linux文件夹文件创建、删除
查看>>
hadoop三种运行模式
查看>>
打开IE8总是提示欢迎使用?怎样使它不提示?
查看>>
C++中strftime()的详细说明
查看>>
c/c++再学习:C与Python相互调用
查看>>
九宫格扩展,输入一个奇数,得到横竖斜相加相等结果
查看>>
XCode设置竖屏
查看>>
触发器
查看>>
Mysql中eft join、right join、inner join的区别
查看>>
POJ2456-Aggressive cows
查看>>
别把紧张情绪带回家 下班后的10个最佳放松法
查看>>
linux指令格式介绍
查看>>
Spark 广播变量 TorrentBroadcast
查看>>
ionic搜索栏
查看>>
mac os 安装 pkg-config
查看>>
Redis源码阅读-Dict哈希字典
查看>>
centos创建本地yum仓库
查看>>
用Proxy进行预处理
查看>>