Home > Article > Web Front-end > How to remove the mask layer of bootstrap modal box
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.
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; }
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!