博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[03]项目实战-移动端流体布局
阅读量:6707 次
发布时间:2019-06-25

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

一.搜索部分

搜索部分包含三个内容,背景区块、文本框和按钮。

//HTML 部分
//CSS 部分#search {    max-width: 6.4rem;    height: .33rem;    background-color: #ddd;    margin: 0 auto;    position: relative;    padding: .03rem 0 0 0;}#search .search {    display: block;    outline: none;    width: 95%;    font-size: .14rem;    border-radius: .04rem;    background-color: #fff;    border: none;    height: .27rem;    padding: 0 .05rem;    margin: 0 auto;}#search .button {    display: block;    background-color: #eee;    outline: none;    cursor: pointer;    color: #666;    width: .5rem;    height: .27rem;    border: none;    border-top-right-radius: .04rem;    border-bottom-right-radius: .04rem;    position: absolute;    font-size: .12rem;    top: .03rem;    right: 1%;}//布局忽略边框计算div {    box-sizing: border-box;}

二.旅游部分

这里,我们首先设计一个标题,具体图片部分放到后面一节。

//HTML 部分

热门旅游

最新的各种热门旅游资讯的推荐!

//CSS 部分#tour {    max-width: 6.4rem;    margin: .1rem auto 0 auto;}#tour h2 {    text-align: center;    color: #666;    font-size: .26rem;}#tour h3 {    text-align: center;    font-weight:normal;    color: #666;    margin: 0.05rem 0 0.1rem 0;    font-size: .16rem;}

三.媒体查询

媒体查询,这里我们不去详细去讲,这个放到后面响应式章节讲,这里简单使用即可。

/*媒体查询,大于 480 小于 640*/@media (min-width: 480px)and (max-width: 640px) {    #tour h2 {        font-size: .26rem;    }    #tour h3 {        font-size: .16rem;    }    #footer {        font-size: .14rem;    }}/*媒体查询,小于 480*/@media (max-width: 480px){    #tour h2 {        font-size: .18rem;    }    #tour h3 {        font-size: .14rem;    }    #footer {        font-size: .12rem;    }}

转载于:https://www.cnblogs.com/pengtdy/p/8306262.html

你可能感兴趣的文章
ecmall的物流配送体系改造
查看>>
[Python]网络爬虫(九):百度贴吧的网络爬虫(v0.4)源码及解析(转)
查看>>
hdu4292Food(最大流Dinic算法)
查看>>
手机网站判断及跳转
查看>>
[LeetCode] Text Justification
查看>>
webdriver API study
查看>>
QoS令牌桶工作原理
查看>>
android工程gen目录中R.java包名是怎么确定
查看>>
【Machine Learning in Action --4】朴素贝叶斯过滤网站的恶意留言
查看>>
Java基础之类Class使用
查看>>
Ubuntu+Eclipse+ADT+Genymotion+VirtualBox开发环境搭建
查看>>
Android 学习之 开源项目PullToRefresh的使用
查看>>
Matplot中文乱码完美解决方式
查看>>
stm32学习笔记----双串口同时打开时的printf()问题
查看>>
Java代码简化神器-Lombok
查看>>
How do I create a List in Scala?
查看>>
lintcode:移动零
查看>>
tomcat的webappclassloader中一个奇怪的异常信息
查看>>
Java语言与C++语言的差异总结
查看>>
Semaphore实现Andoird版源代码剖析
查看>>