How to remove the mask layer of bootstrap modal box

藏色散人
Release: 2020-11-30 16:59:42
Original
2824 people have browsed it

How to remove the bootstrap modal box mask layer: first open the corresponding css file; then add the css style as ".modal-backdrop {filter: alpha(opacity=0)!important;opacity:.. .}" will do.

How to remove the mask layer of bootstrap modal box

The operating environment of this tutorial: Windows 7 system, bootstrap version 3. This method is suitable for all brands of computers.

Recommended: "bootstrap video tutorial"

Remove the bootstrap modal box mask layer

Add css style

.modal-backdrop {
filter: alpha(opacity=0)!important;
opacity: 0!important;
}
Copy after login

The above is the detailed content of How to remove the mask layer of bootstrap modal box. 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!