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.
我有链接其他组件以按需呈现的面板。我有这个面板的背景图片。我需要在运行时在面板的右下/左上/右上/左下显示公司徽标。由于其他组件在同一面板中呈现,我无法将布局更改为其他布局。我想应用 CSS,以便我的徽标将根据需要定位。
非常感谢您的帮助!
非常感谢!
要将 css 类设置为面板主体,您可以这样做:
Panel.body.addCls("logo");
css 需要看起来像这样:
.logo { background-image: url(logo.png); background-position: top right, top left; background-repeat: no-repeat; }
这将在面板主体的右上角和左上角显示徽标。