Simple implementation of html hiding scroll bar

Simple implementation of html hiding scroll bar

1. HTML tags with attributes

XML/HTML CodeCopy content to clipboard
  1. < html   lang = "en"   class = "no-ie"   style = "overflow:hidden;" >   

2. Add the following code to body

XML/HTML CodeCopy content to clipboard
  1. < style   type = "text/css" >      
  2. html{
  3. overflow-x:hidden;
  4. overflow-y: hidden;
  5. }
  6. </ style >   

The above simple implementation of hiding the scroll bar in html is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

Original URL: http://www.cnblogs.com/rocky-fang/p/5633053.html

<<:  Three ways to implement waterfall flow layout

>>:  Example of using negative margin to achieve average layout in CSS

Recommend

Detailed explanation of mysql integrity constraints example

This article describes the MySQL integrity constr...

Advantages and disadvantages of Table layout and why it is not recommended

Disadvantages of Tables 1. Table takes up more byt...

HTML table markup tutorial (6): dark border color attribute BORDERCOLORDARK

In a table, you can define the color of the lower...

js implements custom drop-down box

This article example shares the specific code of ...

Introduction to the use and difference between in and exists in MySQL

First put a piece of code for(int i=0;i<1000;i...

CSS3 flip card number sample code

I received a task from the company today, and the...

Navicat connects to MySQL8.0.11 and an error 2059 occurs

mistake The following error occurs when connectin...

Use of Linux ls command

1. Introduction The ls command is used to display...

How to install Tomcat-8.5.39 on centos7.6

Here is how to install Tomcat-8.5.39 on centos7.6...

Detailed explanation of JavaScript upload file limit parameter case

Project scenario: 1. Upload file restrictions Fun...

How to print highlighted code in nodejs console

Preface When the code runs and an error occurs, w...