Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的项目中,要求当我们将语言从英语更改为阿拉伯语时,所有布局都将显示在从右到左的位置。因此,当我更改所有组件时,除了咆哮消息外,所有组件都从右到左显示。
我想在布局屏幕的左侧显示咆哮消息,我该如何实现?
.ui-growl 类的默认 css 是:
.ui-growl { position: fixed; right: 20px; top: 20px; width: 301px; }
您可以通过为 .ui-growl 类应用以下 css 来实现左侧咆哮:
.ui-growl { left: 20px; position: fixed; top: 20px; width: 301px; }
会工作。