如何在HTML div中显示css样式?

时间:2015-08-06 18:13:30

标签: html css jsp

我想从我的数据库中显示样式完整的CSS。

#{Customization.headerCss}的值为style="display:none;"

我希望在<div>值的基础上显示我的#{Customization.headerCss},它将是无或阻止。

我的代码就像:

<div class="_content-title _radius-5px _ie8";"  #{Customization.headerCss} >
     <p>Hello display is block </p>
 </div>

我收到错误:

org.apache.jasper.JasperException: /cardMgmt/preview/preview.jsp(700,68) #{..} is not allowed in template text

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我得到了解决方案:$代替#

<div class="_content-title _radius-5px _ie8";"  ${Customization.headerCss} >
    <p>Hello display is block </p>
 </div>