] to hide the scroll bar; 2. When the width or height of the browser window is greater than the width or height of the page, scrolling will not be displayed. Article; 3. Add [style="overflow-x:hidden"] to []."/> ] to hide the scroll bar; 2. When the width or height of the browser window is greater than the width or height of the page, scrolling will not be displayed. Article; 3. Add [style="overflow-x:hidden"] to [].">

Home  >  Article  >  Web Front-end  >  How to disable sliding in css

How to disable sliding in css

coldplay.xixi
coldplay.xixiOriginal
2021-04-30 16:53:2615355browse

How to disable sliding in css: 1. Add [scroll="no"] to [] to hide the scroll bar; 2. Refers to when the width or height of the browser window is larger than the width or height of the page. When it is high, the scroll bar will not be displayed; 3. Add [style="overflow-x:hidden"] to [].

How to disable sliding in css

The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.

How to disable sliding in css:

1. Completely hide

Add scroll="no" to d9f058346999e1080c17c8a8369de063 to hide scrolling Bar;

<boby scroll="no">

2. Hide when not needed

means that when the width or height of the browser window is greater than the width or height of the page, the scroll bar will not be displayed;

Otherwise, it will be displayed;

<boby scroll="auto">

3. Style sheet method

Add style="overflow-x:hidden" in d9f058346999e1080c17c8a8369de063 , to hide the horizontal scroll bar;

Add style="overflow-y:hidden" to hide the vertical scroll bar.

Add

<style>
html { overflow-x:hidden; }
</style>

to the included page. Related learning recommendations: css tutorial

The above is the detailed content of How to disable sliding in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn