这似乎是一个Bootstrap错误。当我在具有 <div>
的transform: translate(60px)
内放置模态对话框时,整个模态对话框由其自己的modal-backdrop
涂黑 。
请参阅此处查看错误示例:http://jsbin.com/benonopixa/1/edit?html,output
知道怎么解决吗?
谢谢!
答案 0 :(得分:0)
此行有样式错误检查
<div class="container" style="-webkit-transform: translate(60px);transform: translate(60px);width:800px;height:800px">
<h1>Bootstrap bug report</h1>
使用下面的代码来解决它
<div class="container" style="-webkit-transform: translate(60px);width:800px;height:800px">
<h1>Bootstrap bug report</h1>