首頁  >  文章  >  web前端  >  使用 CSS 為表單輸入新增背景顏色

使用 CSS 為表單輸入新增背景顏色

王林
王林轉載
2023-09-17 13:01:021308瀏覽

使用 CSS 为表单输入添加背景颜色

要向表單輸入新增背景顏色,請使用background-color屬性。

您可以嘗試執行下列程式碼實作表單的背景顏色屬性

範例

#現場示範

<!DOCTYPE html>
<html>
   <head>
      <style>
         input[type=text] {
            width: 100%;
            padding: 10px 15px;
            margin: 5px 0;
            box-sizing: border-box;
            background-color: gray;
         }
      </style>
   </head>
   <body>
      <p>Fill the below form,</p>
      <form>
         <label for = "subject">Subject</label>
         <input type = "text" id = "subject" name = "sub">
         <label for = "student">Student</label>
         <input type = "text" id = "student" name = "stu">
      </form>
   </body>
</html>

以上是使用 CSS 為表單輸入新增背景顏色的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除