我想在顶部显示模式位置(基于ng2semnatic模板的模式)

问题描述 投票:0回答:1

我在项目中使用基于模板的模态,默认情况下模态位置在页面的中间。取而代之的是,我想将模态显示在最高位置。“在此处输入图像描述”

angular modal-dialog ng2-semantic-ui
1个回答
0
投票

模态定义为'position:absolute'(或'fixed'),因此在'x'和'y'中也有一个位置。您可以更改此位置,在这种情况下,请在CSS中使用“ x”(顶部或底部)。示例:

.modal {position: absolute; top: 0}

.modal {position: fixed; top: 0}
© www.soinside.com 2019 - 2024. All rights reserved.