我有两个必须相同高度的面板。面板的代码如下:
<asp:Panel ID="Panel1" GroupingText="Material" CssClass="material"
runat="server" >
<asp:RadioButtonList ID="RadioButtonList1" runat="server" >
<asp:ListItem Selected="True">Plastics</asp:ListItem>
<asp:ListItem Enabled="false">Glass</asp:ListItem>
</asp:RadioButtonList>
</asp:Panel>
<asp:Panel ID="Panel2" GroupingText="Material" CssClass="design"
runat="server" >
<asp:RadioButtonList ID="RadioButtonList1" runat="server" >
<asp:ListItem >SV</asp:ListItem>
<asp:ListItem ">Bifocal</asp:ListItem>
<asp:ListItem >Varifocal</asp:ListItem>
<asp:ListItem >Intermediate</asp:ListItem>
</asp:RadioButtonList>
</asp:Panel>
我用下面的 css 为这两个面板设置了样式:
.material{display:inline-block; float:left;max-height:200px;width:90px;overflow:hidden;}
.design {display:inline-block; float:left;max-height:200px;width:210px;overflow:hidden;}
请注意,我尝试使高度相同。但是,由于 panel1 的内容很少,因此面板的边框确实一直到高度 200px。即使内容没有完全填满面板,我如何才能拥有相同的高度。