且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

字段集宽度为父级的100%

更新时间:2023-11-29 17:36:58

Browsers have custom css in their default stylesheet for fieldset elements.

On Chrome it has min-width: -webkit-min-content;

You could just set this rule :

.section fieldset{
    min-width: 0;
}

See fiddle:

http://jsfiddle.net/tg5uk25L/4/

Inspect the elements with Firebug, Chrome Dev Tools, aso to see the difference between the div and the fieldset elements in your stylesheet!

相关阅读

推荐文章