文字嵌入邊框程式碼例項

antzone發表於2017-03-21

在實際應用中,經常會看到表單效果中,有文字嵌入在邊框之內。

HTML提供了這樣的功能,使用<legend>標籤即可實現。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
</head>
<body>
<form action="">
  <fieldset> 
    <legend>健康資訊</legend>
    <p>請使用者</p>
    使用者名稱:<input type="text" name="user"/>
    密碼:<input type="password" name="psw"/>
    <br/>
    <input type="submit" value="表單提交"/>
  </fieldset>
</form>
</body>
</html>

相關文章