我看到this stackoverlfow post,但这两个选项对我都不起作用。
我正在使用materialize.css,我有一个使用模态内容类的图像。在我检查模态元素的网页上,我可以添加命令top: 170px
以将模态向下移动170px。
但是,我似乎无法在后端更改此内容。
Html Code我正在努力调整。
<div class="modal fade" id="modalCrop">
<div class="modal-dialog">
<div class="modal-content">
我尝试过添加新课程等等。
.test{
top: 170px
}
或更改当前的类,但它似乎不起作用。
.modal-content{
top: 170px !important;
}
思想?