Let's talk about a strange horizontal scroll bar in the front end

藏色散人
Release: 2023-03-01 20:18:20
forward
2323 people have browsed it

This article brings you relevant knowledge about the front-end, mainly talking about a strange horizontal scrolling Question, if you are interested, please take a look at it below. Everyone is welcome to collect and study!

Today I changed the style code of a front-end classmate and found astrange problem.

It's probably like this:

Lets talk about a strange horizontal scroll bar in the front end

The width of my window is 1920px, the width of the scroll container is 1903px, and then a horizontal scroll bar appears, which is incredible. Because the files are nested too deeply, it is very time-consuming to search, so we turn to the global function to find out who triggered the scroll bar operation. So there is the following code

function findScroller(element) { element.onscroll = function() { console.log(element)} Array.from(element.children).forEach(findScroller); } findScroller(document.body);
Copy after login

The object printed is ,. I don't understand this. The element is obviously far away from the body, and no element is super wide. Where does this scroll bar come from?

This is not the standard answer

It's very sad. If one skill is not good, you have to ask for help from the second way - delete the code. Delete it line by line, then convert it into a basic element, such as a custom model, directly replace it with a div, then add styles, and then delete useless code, thus creating a simple model.

After observation, it is found that if the element is not super high, then the element will not have horizontal scrolling problems. If the element is super high, both vertical and horizontal scroll bars will appear at the same time.

More confused.

So, I analyzed it backwards and found that although the width of this super-tall element does not exceed the width of the window, it is1903px, but the default width of the browser scroll bar on PC is17px, and this vertical scroll bar is underbody, which is consistent with the print object above. It can be seen from this:

Lets talk about a strange horizontal scroll bar in the front end

  1. When a scroll bar appears in the container, the available horizontal width of the scroll bar element = original width - 17px.
  2. There must be a width set by the sub-element > original width - 17px, and it is a valid pixel unit such as px, em, rem, vw, etc.
  3. The width set by the sub-element = original width

It can be seen that if the width of the sub-element under the body is set to 1920px or 100vw or any one of 100wv, a horizontal scroll bar will appear.

After a lot of work by the master, I finally discovered a problem with unreasonable setting styles. From this, I simplified the model code as follows:

nbsp;html>    超宽导致元素溢出滚动条  
Copy after login

Therefore, when writing code, constant analysis is required. The css style must be traceable and must not be added at will. It takes a lot of effort when exceptions occur.

Recommended study: "web front-end development"

The above is the detailed content of Let's talk about a strange horizontal scroll bar in the front end. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.im
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!