Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <div class="firstclass<c:if test='true'> someclass</c:if>">
  2. <p>some other stuff...</p>
  3. </div>
  4.  
  5. <c:if test='true'>
  6. <c:set value="someclass" var="cssClass"></c:set>
  7. </c:if>
  8. <div class="${cssClass}">
  9. <p>some other stuff...</p>
  10. </div>
  11.  
  12. <div class="${booleanExpr ? 'cssClass' : 'otherCssClass'}">
  13. </div>
  14.  
  15. <div id="loginById" style="height:<% out.print(instanceClass.booleanMethod()? "250px": "150px");%>">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement