在.NET中,您有一个面板对象。
这为您提供了边框和标签,这对于分组对象很有用。
HTML中是否有类似的设备?我以为有,但我的谷歌在这里失败了。
答案 0 :(得分:3)
fieldset是最接近的等价物。
答案 1 :(得分:3)
fieldset
标记用于组框或面板以包围表单元素。您可以使用legend
元素作为标题。
<fieldset>
<legend>Edit Method Based Query</legend>
<label for="methodName">Method name: </label><input id="methodName" .. >
</fieldset>
&#13;
答案 2 :(得分:1)
HTML有fieldset
。以下是Mozilla docs
<form action="test.php" method="post">
<fieldset>
<legend>Title</legend>
<input type="input" name="radio" id="radio"> <label for="radio">Enter text</label>
</fieldset>
</form>
答案 3 :(得分:1)
你的意思是HTML中的div,section或article元素吗?
http://www.w3schools.com/html/html5_new_elements.asp
或
http://www.w3schools.com/html/html_layout.asp
此?