格式CSS 设置元素 的样式,使其值超出指定范围
使用 CSS :out-of-range 选择器设置 <input> 元素的样式,使其值超出指定范围。
实例
您可尝试运行以下代码来实现 :out-of-range 选择器
<!DOCTYPE html>
<html>
<head>
<style>
input:out-of-range {
border: 3px dashed orange;
background: yellow;
}
</style>
</head>
<body>
<input type = "number" min = "5" max = "10" value = "15">
<p>The style only works for the value entered out of range</p>
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP