如何在一个 div 中显示多个显示组?
我只需要显示一个视觉分离 - 但在同一个 div 内。
有没有办法在一个 div 中显示多个显示组?
例如:以 zend 形式实现以下功能:
<div style="width: 100%;">
<div style="width: 50%; float: left; padding-left: 20px; padding-bottom: 25px;">
<fieldset id="fieldset-homeAddressSettings" tag="fieldset" style="">
<legend> Home address </legend>
<!-- multiple elements follow -->
</fieldset>
</div>
<div style="width: 50%; float: left; padding-left: 20px; padding-bottom: 25px;">
<fieldset id="fieldset-officeAddressSettings" tag="fieldset" style="">
<legend> Office address </legend>
<!-- multiple elements follow -->
</fieldset>
</div>
</div>
我怎样才能在 Zend 形式中实现这一点?
我已经搜索和搜索,到目前为止我还没有找到任何有用的东西。