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.
如何在面板内插入(和对齐)水印(图像)。我正在使用 Ext JS 4.1.1
您可以为此使用 css。cls在面板中添加一个属性:
cls
cls: 'watermark'
然后在你的css文件中定义它,如下所示:
.watermark { background-image: url('your file'); background-repeat: no-repeat; background-position: right bottom; }