码迷,mamicode.com
首页 > Web开发 > 详细

css---4表单相关伪类

时间:2019-10-30 13:18:24      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:opened   ted   close   sed   table   port   pre   NPU   ef6   

input:enabled{ color:red;} 
input:disabled{ color:blue;}
技术图片enabled or disable

表单的状态

input:checked{ width:100px;height:100px;}
技术图片
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
<style>
input:checked{ width:100px;height:100px;}
</style>
</head>
<body>
<input type="checkbox" />
</body>
</html>
View Code

表格获取焦点 input:focus{}        !不适用div

            input:focus{
                background: pink;
            }
技术图片
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            input:focus{
                background: pink;
            }
            div:focus{
                background: blue;
            }
            
        </style>
    </head>
    <body>
        <input type="text"  value="" />
        <div style="width: 200px;height: 200px;background: red;" contenteditable="true" ></div>
    </body>
</html>
input:focus

 

input 模拟单选框

技术图片
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            input:focus{
                background: pink;
            }
            div:focus{
                background: blue;
            }
            
        </style>
    </head>
    <body>
        <input type="text"  value="" />
        <div style="width: 200px;height: 200px;background: red;" contenteditable="true" ></div>
    </body>
</html>
!importent

 

css---4表单相关伪类

标签:opened   ted   close   sed   table   port   pre   NPU   ef6   

原文地址:https://www.cnblogs.com/hack-ing/p/11764053.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!