【element】Remove <el-scrollbar> horizontal scroll bar (effective in practice)

wrong style

code

  .father .el-scrollbar__wrap {
    overflow-x: hidden;
  }

Notice

1. Do not write in scoped.
2. Be sure to add a class name to the parent element, otherwise the height of the global drop-down box will be missing because it is not written in scoped.

Correct style

Guess you like

Origin blog.csdn.net/2201_75705263/article/details/133271327