Sample code for displaying a scroll bar after the HTML page is zoomed out

Sample code for displaying a scroll bar after the HTML page is zoomed out

Here is a record of how to make a scroll bar appear at the bottom after the HTML page is reduced in size, so that you can scroll the scroll bar to browse the areas that are covered by the reduced interface.

Talk about the benefits of doing this.

First of all, generally, when the interface is reduced in size, no scroll bar appears, and users cannot access hidden areas, so the interface must be enlarged.

Secondly, due to the relative or absolute layout of some interfaces, as the interface becomes smaller, the interface on the right will move to the bottom, which may make the interface layout unsightly. The most worry-free method is to display the scroll bar after shrinking it.

The implementation is very simple, just a few lines of code

body{
    min-width: 1200px;
    overflow: scroll;
    /*max-width:100%;*/
}

Knowledge point expansion:

Scroll bar appears automatically when html page is zoomed out

Just import this style and set the attributes in the body as required.

<style>

body{
  margin:0px;
  width:100%;
  min-width:1500px;
  max-width:100%;
  height:100%;
  background-color:#F0F0F0;
}
#head{
  background-color:#FFFF00;
  width:100%;
  height:100px;
}
#center{
  background-color:#00FFFF;
  width:100%;
  min-height:100%;
}
#foot{
  background-color:#FF00FF;
  width:100%;
  height:100px;
}
</style>

This is the end of this article about the sample code for displaying a scroll bar when the HTML page is reduced in size. For more related content on displaying a scroll bar when the HTML page is reduced in size, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope that everyone will support 123WORDPRESS.COM in the future!

<<:  A detailed introduction to the CSS naming specification BEM from QQtabBar

>>:  Sublime / vscode quick implementation of generating HTML code

Recommend

Deleting files with spaces in Linux (not directories)

In our daily work, we often come into contact wit...

Text mode in IE! Introduction to the role of DOCTYPE

After solving the form auto-fill problem discussed...

MySQL table field time setting default value

Application Scenario In the data table, the appli...

JavaScript implements long image scrolling effect

This article shares the specific code of JavaScri...

Detailed explanation of the use of find_in_set() function in MySQL

First, let’s take an example: There is a type fie...

Practical method of deleting a row in a MySql table

First, you need to determine which fields or fiel...

Vue3 encapsulates its own paging component

This article example shares the specific code of ...

Detailed instructions for installing Jenkins on Ubuntu 16.04

1. Prerequisites JDK has been installed echo $PAT...

MySQL million-level data paging query optimization solution

When there are tens of thousands of records in th...

Application of HTML and CSS in Flash

Application of HTML and CSS in Flash: I accidental...

How to install mysql on centos and set up remote access

1. Download the mysql repo source $ wget http://r...

Hyperlink icon specifications: improve article readability

1. What is the hyperlink icon specification ?<...

base target="" specifies the target of the base link to open the frame

<base target=_blank> changes the target fram...

Vue.js implements calendar function

This article example shares the specific code of ...