仅当满足某些条件时才浮动 div
我有一个 .jsp,根据参数,它可以有 1 或 2 个表。如果仅满足其中一个参数,我希望将表格居中。如果两个参数都满足,我想将一个表向左浮动,将另一个表向右浮动。我可以处理漂浮的部分,我只是不确定如何处理其他条件。我认为这可以通过某种“if”语句来完成......?
I have a .jsp that, based on parameters, can have 1 or 2 tables. If only one of the parameters is fulfilled I want to have the table centered. If both parameters are fulfilled I want to float one table left and float the other table right. I can take care of the floating part, I am just unsure on how to have the other condition. I would think this can be done with some sort of 'if' statement....?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能需要使用
和
的组合。希望这有帮助。
You'll most likely need to use a combination of
<c:choose />
and<c:if />
.Hope this helps.