本文介绍了有什么办法有一个字段集宽度只有和它们中的控件一样宽吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
似乎fieldset默认为其容器的100%宽度。
It seems that fieldset defaults to 100% width of its container. Is there any way that you can have the field set just be as big as the widest control inside the fieldset?
推荐答案
使用
<style type="text/css">
.fieldset-auto-width {
display: inline-block;
}
</style>
<div>
<fieldset class="fieldset-auto-width">
<legend>Blah</legend>
...
</fieldset>
</div>
这篇关于有什么办法有一个字段集宽度只有和它们中的控件一样宽吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!