Responsive Web Design Learning (1) - Determining the screen size and percentage usage

Responsive Web Design Learning (1) - Determining the screen size and percentage usage

Nowadays, mobile devices are becoming more and more popular, and it is more and more common for users to use smartphones and pads to browse the web. However, traditional fix-type pages cannot be displayed well on mobile terminals. Therefore, Ethan Marcotte proposed the concept of responsive web design.

The English name of responsive web design is Responsive Web Design, abbreviated as RWD.

I borrowed a book called "Head First Mobile Web" by O'REILLY from the library, which talked about some techniques for doing RWD.

Two things I learned today are:

1. Use media information to help determine screen size

2. Use percentages to replace pixels used previously to declare size-related information such as width

Take a look at the results of today's experiment ( there is a download link for the experimental example at the end of this article ):

video:

When displaying the page in full screen


When narrowing the browser to mimic a mobile device:

How to do it?

First, use the media statement in the css file

If you want your web pages to respond to different device sizes, you need to prepare for each size in advance. For example, on a normal PC monitor, it might be displayed in three columns, like this:

On mobile devices, such as smartphones, it may be necessary to distribute them in streaming, as follows:

Obviously, the CSS distribution of the two is different. In the three-column display in the above figure, the columns on the left and right sides need to float to the required direction respectively, while in the flow layout in the figure below, the blocks are displayed serially downward. Therefore, it can be seen that at least for each different CSS distribution, there should be a different strategy. Now you can edit two different CSS files and import them using the <link> directive. However, you can also use the @media statement to perform logical judgments. As follows: @media screen and ( min-width :480px){/*css style*/}

Among them, screen is one of the many types of media, and other common media types include print. Min-width is one of the features of media. Media has many features that can be used to help us make logical judgments, common ones include monochrome, max-width, etc.

With the help of this @media statement, we can make logical judgments similar to if-else. For example, the two different situations given in the example are judged using the following statements:

Copy code
The code is as follows:

/***********desktop structural css*************/
@media screen and (min-width:481px) {
/*CSS for web pages displayed by desktop browsers*/
}
/***********mobile structural css*************/
@media screen and (max-width:480px) {
/*CSS of the web page displayed by the mobile browser*/
}

In the statement, "and" represents the logical "and". If you want to express the logical "or", you can use "," for example, @media print , screen and (monochrome) {/**/}

It means that when it is on a "print device" or a "monochrome screen device", the CSS settings in the curly braces are used.

Next, replace the pixel units associated with the dimensions with percentages.

When designing for the first time, just design according to the percentage, such as

In addition, you can also follow the traditional web page design method and first determine the pixels of each area. For example, if the main area is 460px, then if the width of the entire web page is set to 960px, the width of the main area is 460/960=47.92%. This conversion method can be used when reconstructing the web page.

【Test example download】

<<:  How to expand the capacity of VirtualBox's virtual disk vdi file (graphic tutorial)

>>:  MySQL helps you understand index pushdown in seconds

Recommend

JavaScript implements bidirectional linked list process analysis

Table of contents 1. What is a doubly linked list...

A few things about favicon.ico (it’s best to put it in the root directory)

Open any web page: for example, http://www.baidu....

An example of implementing a simple infinite loop scrolling animation in Vue

This article mainly introduces an example of Vue ...

Is a design that complies with design specifications a good design?

In the past few years of my career, I have writte...

Summary of commonly used SQL in MySQL operation tables

1. View the types of fields in the table describe...

Steps to create a WEBSERVER using NODE.JS

Table of contents What is nodejs Install NodeJS H...

The perfect solution for MySql version problem sql_mode=only_full_group_by

1. Check sql_mode select @@sql_mode The queried v...

Detailed tutorial on installing JDK1.8 on Linux

1. Cleaning before installation rpm -qa | grep jd...

Detailed explanation of how to copy and backup docker container data

Here we take the Jenkins container as an example ...

JavaScript to achieve skin effect (change background)

This article shares the specific code of JavaScri...

Share 13 excellent web wireframe design and production tools

When you start working on a project, it’s importa...

MySQL 5.5.27 winx64 installation and configuration method graphic tutorial

1. Installation Package MYSQL service download ad...