Css cho Thẻ fieldset trong HTML

Css cho Thẻ fieldset trong HTML

Css cho Thẻ fieldset trong HTML

Tự code rồi chạy thử... Chạy Thử
<!DOCTYPE html>
<html>
<head>
<title>Css cho Thẻ fieldset trong HTML</title>
<style>
fieldset {
  background-color: #eeeeee;
}

legend {
  background-color: gray;
  color: white;
  padding: 5px 10px;
}

label {
  float: left;
  width: 83px;
}
</style>
</head>
<body>
<h1>Css cho Thẻ fieldset trong HTML</h1>
<form action="https://webmoi.vn/the-fieldset-mac-dinh-trong-html/">
 <fieldset>
  <legend>Thông tin liên hệ:</legend>
  <label for="hoten">Họ Tên:</label>
  <input type="text" id="hoten" name="txthoten"><br><br>
  <label for="dienthoai">Điện thoại:</label>
  <input type="text" id="dienthoai" name="txtdienthoai"><br><br>
  <label for="email">Email:</label>
  <input type="email" id="email" name="txtemail"><br><br>
  <input type="submit" value="GỬI ĐI">
 </fieldset>
</form>
</body>
</html>
Css cho Thẻ fieldset trong HTML nằm trong bài viết Thẻ fieldset trong HTML