### css
```
body{
#不要设置宽高 否则在某些版本webview中无法自适应屏幕尺寸
#width:720px;
#height:1280px;
margin: 0;
}
#bg {
position: fixed;
width: 100%;
height:100%;
}
/* #telecom{
position:fixed;
top:0;
right:0;
bottom:0;
left:0;
margin:auto;
}
*/
#telecom{
position:absolute;
width:74%;
height:12%;
top:20%;
right:0;
bottom:0;
left:0;
margin:auto;
}
```
### html
```
<body>
<image id='bg' alt="" src="images/bg.png" style="z-index: -100"/>
<a href="http://www.baidu.com" target="_blank"><image id='telecom' alt="" src="images/telecom.png" style="z-index: 100"/></a>
</body>
```