首页 > 移动平台 > 详细

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

时间:2015-01-30 15:21:46      阅读:260      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!