一个不常用的HTML标签fieldset,不过我觉得比较有意思,其语法如下:
<fieldset> <legend>fieldset名称</legend> <!-- 加入你的内容 --> </fieldset>
下面是一个代码示例:
<center> <fieldset style="width:300px"> <legend>用户登陆</legend> <form name="login" method="post"> 帐号:<input name="UserName"></input> <br><br> 密码:<input type="password" name="UserPassword"></input> <br><br> <input type="submit" value="登陆" name="Submit"></input> <input type="reset" value="重填" name="Reset"></input> </form> </fieldset> </center>
代码的实际效果如下:
转至:http://blog.csdn.net/aaahts/archive/2004/07/26/52129.aspx
|