样式具有“readonly”属性的元素带有 CSS


要选择只读的元素,请使用 CSS :read-only 选择器。

示例

你可以尝试运行以下代码来实现 :read-only 选择器

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         input:read-only {
            background-color: blue;
            color: white;
         }
      </style>
   </head>
   <body>
      <form>
         Subject: <input type = "text" name = "subject" value = "Maths"><br>
         Student: <input type = "text" name = "student" readonly value = "Amit"><br>
      </form>
   </body>
</html>

更新日期: 2020 年 7 月 1 日

2K+ 查看次数

开启你的 职业生涯

完成课程获得认证

开始使用
广告