仅在满足特定条件时浮动div

时间:2011-03-29 18:41:02

标签: css jsp

我有一个基于参数的.jsp,可以有1个或2个表。如果只满足其中一个参数,我想让表居中。如果两个参数都满足,我想向左浮动一个表并向右浮动另一个表。我可以照顾浮动部分,我只是不确定如何有其他条件。我认为这可以用某种'if'语句来完成......?

1 个答案:

答案 0 :(得分:1)

您很可能需要使用<c:choose /><c:if />的组合。

<c:choose>
  <c:when test="${conditionOne && conditionTwo}">
    <table class="tableLeft"></table>
    <table class="tableRight"></table>
  </c:when>
  <c:otherwise>
    <c:if test="${conditionOne || conditionTwo}">
      <table class="tableCenter"></table>
    </c:if>
  </c:otherwise>
</c:choose>

希望这有帮助。