我如何摆脱白色背景。这是图像,我需要摆脱白色背景,最后它应该显示blue colour
的默认panel
。
答案 0 :(得分:9)
对我有用的只是:
bodyStyle : 'background:none', // Removes the default white background
答案 1 :(得分:2)
尝试在面板的配置中添加plain: true
。
答案 2 :(得分:0)
添加配置
bodyCls:'your-css'
或
`cls:'your-css'`
在default.html或您的特定样式表中添加css样式。
.your-css
{
background-color:#4169E1 !important;
}