Browser does not support Position:fix resolution

Source: Internet
Author: User

Recently to a friend to do a mobile website, the bottom of the site need to put a float, the page scrolling down, this float also followed downward scrolling, has been from the bottom of the window, generally we are using position:fixed to achieve this function, and the author is the realization of this, But in the mobile browser does not support position:fixed, this article on my solution, we look at the next clear on the line.


CSS Code

. wap_bottom {

height:60px;

width:100%;

position:fixed;

Z-index:2;

bottom:0;

left:0;

opacity:0.7;

}

HTML code
<div class= "Wap_bottom" > <a href= "http://www.45it.com" target= "_blank" ></a> </div>

Attention:

Generally speaking, you write the last float is the use of CSS position:fixed; Control, but this method only applies to the computer end, but not on the phone, the effect is to use the mobile phone browser to open the page when the display is the bottom, but when we scroll down, and this floating but not followed together, Then you need to add the following code between the head to solve the mobile phone browser does not support position:fixed bugs.

<meta name= "viewport" content= "Width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" >

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.