将uib模态内容从模态内容移到页面顶部

时间:2017-07-20 14:35:11

标签: javascript html css angularjs angular-ui-bootstrap

我在uib模态窗口中有一些内容。我希望将该conent移动到html的顶部(固定在html的顶部)。

我尝试过设置

position: fixed;
top: 0

它走到了顶峰。但它仍然留在模态内容(不在网页的顶部)

enter image description here

enter image description here

我如何将其从div中拉出来并坚持到我的网页顶部?

在这里小提琴:https://jsfiddle.net/Mahesh434/6ktc4g8j/

1 个答案:

答案 0 :(得分:1)

我使用以下方法解决了此问题,希望对您有所帮助。

添加CSS:

.modal-dialog {
  transform: none;
}

注意:,但不确定添加此行会有什么影响;

就我而言,该模型可以正常运行,没有任何问题。