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

webapp设置适应pc和手机的页面宽高以及布局层叠图片文字

时间:2014-07-17 17:20:56      阅读:262      评论:0      收藏:0      [点我收藏+]

标签:webapp   手机   自适应   层叠图片文字   

<!DOCTYPE html>
<html lang="zh-cn">
	<head>
		<title>我趣旅行网-美剧迷</title>
		<meta charset="utf-8">
		<meta name="viewport" content="initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
		<meta name="format-detection" content="telephone=no">
		<link rel="stylesheet" type="text/css" href="test.css">
	</head>
	<body>
		<div class="wrapper">
			<img class="bg" src="img/background.png"/>
			<img class="logo" src="img/pisode_logo.png">
			<p class="pisode">Pisode</p>
		</div>
	</body>	
</html>	

css:

html,body{
	height:100%;
	margin:0;
	padding:0;
}
.wrapper{
	position:relative;
	margin: 0 auto;
	max-width: 500px;
	min-height: 100%;
	text-align: center;
	width: 100%;
}
.bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: -1;
	height: 100%;
}
.logo{
	width:100%;
}
.pisode{
	font-size:14px;
}

效果图:

bubuko.com,布布扣


访问链接:http://2.chuang8.sinaapp.com


webapp设置适应pc和手机的页面宽高以及布局层叠图片文字,布布扣,bubuko.com

webapp设置适应pc和手机的页面宽高以及布局层叠图片文字

标签:webapp   手机   自适应   层叠图片文字   

原文地址:http://blog.csdn.net/smy_yu/article/details/37902703

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