码迷,mamicode.com
首页 > 移动开发 > 详细

移动端页面前端设计随笔整理

时间:2015-01-30 15:23:06      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

1、安卓机部分浏览器不支持这种背景css的写法:

 
1 background:#fff url(lunch.png) center bottom /86.5% no-repeat; 

要写成:

1 background:#fff url(lunch.png) center bottom no-repeat;
2 background-size:86.5%;

2、使用百分比布局页面的时候,从html到body到。。。。。一级一级的每一级都要设置%,比如

1 html{height:100%;}
2 body{height:100%;}
3 .box{height:50%;}

如此一来。box才能显示高度为页面的50%,否则,box的height值无效。

3、img是内联元素。所以用div包img的时候,会出现溢出。hack方法,给img添加display:block;

   

移动端页面前端设计随笔整理

标签:

原文地址:http://www.cnblogs.com/edgarman/p/4262119.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!