如何更改p:咆哮位置和宽度。
咆哮应该弹出屏幕的中央底部。
.ui-growl {
position:fixed;
bottom: 30% !important;
left: 37%;
width: 500px;
z-index:9999;
}
由于
答案 0 :(得分:1)
尝试使用left: 50%;
并添加margin-left: -250px;
。
或者,您可以使用CSS calc
(请参阅browser support):
left: calc(50% - 250px);