Media query combined with rem layout in CSS3 to adapt to mobile screens

Media query combined with rem layout in CSS3 to adapt to mobile screens

CSS3 syntax: (1rem = 100px for a 750px design)

@media only screen and (min-width: 320px) and (max-width: 479px) {
    html {
        font-size: 42.67px !important;
    }
}
@media only screen and (min-width: 480px) and (max-width: 639px) {
    html {
        font-size: 64px !important;
    }
}
@media only screen and (min-width: 640px) and (max-width: 749px) {
    html {
        font-size: 85.34px !important;
    }
}
@media only screen and (min-width: 750px) and (max-width: 959px) {
    html {
        font-size: 100px !important;
    }
}
@media only screen and (min-width: 960px) and (max-width: 1241px) {
    html {
        font-size: 128px !important;
    }
}
@media only screen and (min-width: 1242px) {
    html {
        font-size: 165.6px !important;
    }
}

js control

(zepto/jQuery) (1rem = 100px for a 750px design)
function setFont() {
    let window_width = window.innerWidth;
    let font_size = parseFloat(window_width / 3.75);
    $('html').css('font-size', font_size);
}

$(window).on('resize', function () {
    setFont();
});

Summarize

The above is what I introduced to you about media queries in CSS3 combined with rem layout to adapt to mobile phone screens. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time!

<<:  Docker solution for logging in without root privileges

>>:  Detailed explanation of MySQL backup process using Xtrabackup

Recommend

How to update the view synchronously after data changes in Vue

Preface Not long ago, I saw an interesting proble...

A few front-end practice summaries of Alipay's new homepage

Of course, it also includes some personal experien...

Use Firebug tool to debug the page on iPad

How to debug a page on iPad? When using iOS 5, you...

Avoiding Problems Caused by Closures in JavaScript

About let to avoid problems caused by closure Use...

js to achieve a simple magnifying glass effect

This article shares the specific code of js to ac...

Analysis of the difference between bold <b> and <strong>

All of us webmasters know that when optimizing a ...

Uninstalling MySQL database under Linux

How to uninstall MySQL database under Linux? The ...

Docker container operation instructions summary and detailed explanation

1. Create and run a container docker run -it --rm...

Detailed troubleshooting of docker.service startup errors

Execute the following command to report an error ...

In-depth understanding of the vertical-align property and baseline issues in CSS

vertical-align attribute is mainly used to change...

Solve the problem of blocking positioning DDL in MySQL 5.7

In the previous article "MySQL table structu...

Detailed explanation of anonymous slots and named slots in Vue

Table of contents 1. Anonymous slots 2. Named slo...

An example of elegant writing of judgment in JavaScript

Table of contents Preface 1. Monadic Judgment 1.1...