Draws a box around the text and other elements that the field set contains.
fieldset元素用于对表单中的元素进行分组并在文档中区别标出文本。它与窗口框架的行为有些相似。fieldset在
Internet Explorer 4.0 及以上版本的
HTML 和的脚本中可用。
这是一个简单的页面,所有的代码处于一个fieldset方框内,方框内的第一个元素为legend域标题,另外就是一个
无序列表ul,随机加了一些内容。我们看下面的css是如何定义的:
fieldset { padding:10px; margin:10px;
width:270px; color:#333; border:#06c dashed 1px;}
fieldset方框的设置:填充与边距都是10px。设置宽度为270px。文字颜色深灰色#333。边框为一象素的蓝色#06c
虚线。
legend域标题的设置:文字颜色为蓝色#06c,文字加粗,
背景色为白色#fff。
我们定义fieldset的边框的样式border,在IE6里边框会与legend里的文字重合叠加,而默认的样式则不会。我们给legend一个背景遮挡边框,这里是background:#fff;
id, class, title, style, dir, lang, xml
:lang如需完整的描述,请访问
标准属性。
accesskey,
onclick, ondblclick, onmousedown, onmouseup,
onmouseover, onmousemove,
onmouseout, onkeypress, onkeydown, onkeyup如需完整的描述,请访问事件属性。