Home > Web Front-end > JS Tutorial > body text

Solution to the misalignment of iview's select drop-down box options

小云云
Release: 2018-03-03 10:51:24
Original
2728 people have browsed it

In the process of using iview, I encountered such a problem, using the select drop-down box component in Model. However, when the pop-up box exceeds one screen and needs to be scrolled, the select drop-down options will be misaligned (Figure 1 below shows normal, Figure 2 shows the drop-down options misaligned after scrolling.)

Figure 1:

Figure 2:

After analyzing the component code, the following style was found :


.ivu-modal .ivu-select-dropdown {
  position: absolute !important;
}
Copy after login

Solution

It is this style that affects the positioning of the drop-down box, the solution The method is to overwrite the author's original style.

However, unfortunately, the author added an !important and changed the priority.

So, how to make your style have a higher priority than his? You can add this style to the custom style file:


body .ivu-modal .ivu-select-dropdown{
 position: fixed !important;
}
Copy after login

This way This solves the problems mentioned above. Regarding why adding a body can change the priority of the style, you can refer to my blog related articles (how2js.cn)

Related recommendations:

JavaScript implements two Sample code sharing for moving a select drop-down box option left and right

jQuery implements a select drop-down box to obtain the currently selected text

div+css Simulate select drop-down box example code

The above is the detailed content of Solution to the misalignment of iview's select drop-down box options. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
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!