用 CSS 来设定文字输入框样式


要设置表单的输入域样式,可以尝试运行以下代码。设置 <input> 样式

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         input {
            width: 100%;
         }
      </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>

更新于:2020 年 6 月 23 日

282 次浏览

开启您的职业生涯之旅

完成课程,获得认证

入门
广告