如何更改CSS中的poptrox-popup垂直对齐属性?

vc6uscn9  于 2023-03-20  发布在  其他
关注(0)|答案(2)|浏览(107)

如何在CSS中将vertical-align参数更改为top,同时仍然能够从顶部后退N像素?我已经尝试了所有与poptrox-popup连接的节点,没有任何效果。
谢谢!
第一节第一节第一节第一节第一次

dgenwo3n

dgenwo3n1#

只需添加top: 30px;margin-top: 30px;

cigdeys3

cigdeys32#

这个变体帮助我:

margin: 0 0 50em 0;

.poptrox-popup {
    background: #1a1f2c;
    background: rgba(18, 21, 29, 0.9);      
    cursor: default;
    /*vertical-align: top;*/ /* Does not work */
    /*top: 30px;*/ /* Does not work */
    /*margin-top: 30em;*/ /* It works, but it shifts down to the bottom */
    margin: 0 0 50em 0; /* It shifts up as I need and rest against the top of the page when the page is resized vertically */
}

相关问题