当父div具有变换:translate时,Bootstrap模态对话框变黑

时间:2014-10-30 08:24:58

标签: css twitter-bootstrap twitter-bootstrap-3 transform

这似乎是一个Bootstrap错误。当我在具有 <div> transform: translate(60px)内放置模态对话框时,整个模态对话框由其自己的modal-backdrop 涂黑 。 请参阅此处查看错误示例:http://jsbin.com/benonopixa/1/edit?html,output

知道怎么解决吗?

谢谢!

1 个答案:

答案 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>