Home  >  Article  >  Web Front-end  >  How to remove the mask layer of bootstrap modal box

How to remove the mask layer of bootstrap modal box

藏色散人
藏色散人Original
2020-11-19 10:33:582849browse

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;
}

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!

Statement:
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