博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

fieldset——一个浮游在边框之上的HTML标签

Posted on 2011-11-22 15:03  southy  阅读(151)  评论(0)    收藏  举报

一个浮游在边框之上的HTML标签,很少出现,但确很好用,其语法如下:

<fieldset>
<legend>头部名称</legend>
  内容
</fieldset>

 

示例:

<fieldset style=" width:300px">
<legend>用户登陆</legend>
<form method="post">
帐号:<input ></input>
<br><br>
密码:<input type="password" ></input>
<br><br>
<input type="submit" value="登陆" ></input>
  
<input type="reset" value="重填" ></input>
</form>
</fieldset>

 

原文来自:http://www.southy.cn/article.asp?id=83