HTML中是否有面板?

时间:2015-03-29 22:16:40

标签: html

在.NET中,您有一个面板对象。

enter image description here

这为您提供了边框和标签,这对于分组对象很有用。

HTML中是否有类似的设备?我以为有,但我的谷歌在这里失败了。

4 个答案:

答案 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;
&#13;
&#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

此?