Yii2 模态框遮挡select2下拉列表问题

核能气质少年 提交于 2019-11-30 11:01:48

问题:模态框遮挡select2下拉列表

 

解决方案:

 

 

$css = <<<CSS.select2-drop {        z-index: 10050 !important;    }     .select2-search-choice-close {        margin-top: 0 !important;        right: 2px !important;        min-height: 10px;    }     .select2-search-choice-close:before {            color: black !important;        }    /*防止select2不会自动失去焦点*/    .select2-container {        z-index: 16000 !important;    }     .select2-drop-mask {        z-index: 15990 !important;    }     .select2-drop-active {        z-index: 15995 !important;    }CSS;$this->registerCss($css,['type'=>'text/css']);

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!