Web Front-end
CSS Tutorial
Detailed explanation of examples of UI element status pseudo-class selectors in css3
Detailed explanation of examples of UI element status pseudo-class selectors in css3
This article mainly introduces the UI element status pseudo-class selector of CSS3, including hover, active and focus, enabled, disabled read-only and read-write, etc. Friends who need it can refer to it
The so-called UI selector: The specified style only works when the element is in a certain state, and does not work in the default state!
Browser compatibility:
E:hover Support firefox, safari, Opera, ie8, chrome ------------
E:active Support firefox , safari, Opera, chrome Does not support ie8
E:focus Supports firefox, safari, Opera, ie8, chrome -------------
E:enabled Supports firefox, safari, Opera , chrome Does not support ie8
E:disabled Supports firefox, safari, Opera, chrome Does not support ie8
E:read-only Supports firefox, Opera Does not support ie8, safari, chrome
E:read-write Supported Firefox, Opera do not support IE8, Safari, Chrome
E: Checked support Firefox, Safari, Opera, Chrome does not support IE8
E :: SELECTION support Firefox, Safari, Opera, Chrome does not support ie8
E: default only supports firefox chrome does not support ie8
E:valid supports firefox, safari, Opera, chrome does not support ie8
E:required supports firefox, safari, Opera, chrome Does not support ie8
E:optional Supports firefox, safari, Opera , chrome Does not support ie8
E:in-range Supports firefox, safari, Opera, chrome Does not support ie8
E:out-of-rang Supports firefox, safari, Opera, chrome Does not support ie8
The following is Detailed description of its use;
1. Selectors E:hover, E:active and E:focus
1). The E:hover selector is used to specify when the mouse pointer moves to The style used by the element when the element is on
Usage method:
CSS Style
}
We can use the "< element >" to add the type attribute of the element.
Example:
input[type="text"]:hover{
CSS style
}
2). The E:active selector is used to specify the style used when the element is activated.
3). The E:focus selector is used to specify the style used by the element to obtain the cursor focus. It is mainly used when the text box control obtains the focus and performs text input.
For example:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>选择器E:hover、E:active和E:focus</title>
<style>
input[type="text"]:hover{
background: green;
}
input[type="text"]:focus{
background: #ff6600;
color: #fff;
}
input[type="text"]:active{
background: blue;
}
input[type="password"]:hover{
background: red;
}
</style>
</head>
<body>
<h1>选择器E:hover、E:active和E:focus</h1>
<form>
姓名:<input type="text" placeholder="请输入姓名">
<br/>
<br/>
密码:<input type="password" placeholder="请输入密码">
</form>
</body>
</html>2. E:enabled pseudo-class selector and E:disabled pseudo-class selector
1). The E:enabled selector is used to specify the style when the element is in the available state.
2). The E:disabled selector is used to specify the style when the element is in a disabled state.
For example:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>E:enabled伪类选择器与E:disabled伪类选择器</title>
<style>
input[type="text"]:enabled{
background: green;
color: #ffffff;
}
input[type="text"]:disabled{
background: #727272;
}
</style>
</head>
<body>
<h1>E:enabled伪类选择器与E:disabled伪类选择器</h1>
<form>
姓名:<input type="text" placeholder="请输入姓名" disabled>
<br/>
<br/>
学校:<input type="text" placeholder="请输入学校">
</form>
</body>
</html>3. E:read-only pseudo-class selector and E:read-write Pseudo-class selector
1). The E:read-only selector is used to specify the style when the element is in a read-only state.
2). The E:read-write selector is used to specify the style when the element is in a non-read-only state.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>read-only伪类选择器与E:read-write伪类选择器</title>
<style>
input[type="text"]:read-only{
background: #000;
color: green;
}
input[type="text"]:read-write{
color: #ff6600;
}
</style>
</head>
<body>
<h1>read-only伪类选择器与E:read-write伪类选择器</h1>
<form>
姓名:<input type="text" placeholder="请输入姓名" value="winson" readonly>
<br/>
<br/>
学校:<input type="text" placeholder="请输入学校">
</form>
</body>
</html>4. Pseudo-class selectors E: checked, E: default and indeterminate
1), E The :cehcked pseudo-class selector is used to specify the style when the radio radio button or checkbox in the form is in the selected state.
2). The E:default selector is used to specify the style of the radio button or check box control that is in the selected state by default when the page is opened.
3). The E:indeterminate selector is used to specify the style of the entire group of radio button boxes when no single radio button box in a group of radio button boxes is set to the selected state when the page is opened.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>checked伪类选择器</title>
<style>
input[type="checkbox"]:checked{
outline: 2px solid green;
}
</style>
</head>
<body>
<h1>checked伪类选择器</h1>
<form>
房屋状态:
<input type="checkbox">水
<input type="checkbox">电
<input type="checkbox">天然气
<input type="checkbox">宽带
</form>
</body>
</html>Default selection
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>default伪类选择器</title>
<style>
input[type="checkbox"]:default{
outline: 2px solid green;
}
</style>
</head>
<body>
<h1>default伪类选择器</h1>
<form>
房屋状态:
<input type="checkbox" checked>水
<input type="checkbox">电
<input type="checkbox">天然气
<input type="checkbox">宽带
</form>
</body>
</html><h1 style="color: rgb(0, 0, 0); font-family: Simsun; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px;">indeterminate伪类选择器</h1><!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>indeterminate伪类选择器</title>
<style>
input[type="radio"]:indeterminate{
outline: 2px solid green;
}
</style>
</head>
<body>
<h1>indeterminate伪类选择器</h1>
<form>
性别:
<input type="radio">男
<input type="radio">女
</form>
</body>
</html>5. Pseudo-class selector E::selection
1). The E:selection pseudo-class selector is used to specify the style when the element is selected.
For example
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>伪类选择器E::selection</title>
<style>
::selection{
background: green;
color: #ffffff;
}
input[type="text"]::selection{
background: #ff6600;
color: #ffffff;
}
</style>
</head>
<body>
<h1>伪类选择器E::selection</h1>
<p>今天,开发搜索框,出现了bug,现在没有找到原因!今天,开发搜索框,出现了bug,现在没有找到原因!今天,开发搜索框,出现了bug,现在没有找到原因!今天,开发搜索框,出现了bug,现在没有找到原因!今天,开发搜索框,出现了bug,现在没有找到原因!</p>
<input type="text" placeholder="文本">
</body>
</html>6. E:invalid pseudo-class selector and E:valid pseudo-class selector
1). The E:invalid pseudo-class selector is used to specify the style when the element content cannot pass the check specified by HTML5 using attributes such as requirede of the element or the element content does not conform to the format specified by the element.
2). The E:valid pseudo-class selector is used to specify the style when the element content can pass the check specified by HTML5 by using attributes such as requirede of the element or when the element content conforms to the format specified by the element.
For example
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>E:invalid伪类选择器与E:valid伪类选择器</title>
<style>
input[type="email"]:invalid{
color: red;
}
input[type="email"]:valid{
color: green;
}
</style>
</head>
<body>
<h1>E:invalid伪类选择器与E:valid伪类选择器</h1>
<form>
<input type="email" placeholder="请输入邮箱">
</form>
</body>
</html>7. E:required pseudo-class selector and E:optional pseudo-class selector
1). The E:required pseudo-class selector is used to specify the styles of input elements, select elements, and textarea elements that are allowed to use the required attribute and have specified the required attribute.
2). The E:optional pseudo-class selector is used to specify the style of input elements, select elements and textarea elements that are allowed to use the required attribute and the required attribute is not specified.
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>E:required伪类选择器与E:optional伪类选择器</title>
<style>
input[type="text"]:required{
background: red;
color: #ffffff;
}
input[type="text"]:optional{
background: green;
color: #ffffff;
}
</style>
</head>
<body>
<h1>E:required伪类选择器与E:optional伪类选择器</h1>
<form>
姓名:<input type="text" placeholder="请输入姓名" required>
<br/>
<br/>
学校:<input type="text" placeholder="请输入学校">
</form>
</body>
</html>8. E:in-range pseudo-class selector and E:out-of-range pseudo-class selector
1). The E:in-range pseudo-class selector is used to specify the style when the effective value of the element is limited to a range and the actual input value is within this range.
2). The E:out-of-range pseudo-class selector is used to specify the style to be used when the effective value of the element is limited to a range, but the actual input value exceeds it.
For example
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>E:in-range伪类选择器与E:out-of-range伪类选择器</title>
<style>
input[type="number"]:in-range{
color: #ffffff;
background: green;
}
input[type="number"]:out-of-range{
background: red;
color: #ffffff;
}
</style>
</head>
<body>
<h1>E:in-range伪类选择器与E:out-of-range伪类选择器</h1>
<input type="number" min="0" max="100" value="0">
</body>
</html>The above is the detailed content of Detailed explanation of examples of UI element status pseudo-class selectors in css3. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1381
52
How to use bootstrap in vue
Apr 07, 2025 pm 11:33 PM
Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.
The Roles of HTML, CSS, and JavaScript: Core Responsibilities
Apr 08, 2025 pm 07:05 PM
HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.
How to write split lines on bootstrap
Apr 07, 2025 pm 03:12 PM
There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.
How to resize bootstrap
Apr 07, 2025 pm 03:18 PM
To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-
How to insert pictures on bootstrap
Apr 07, 2025 pm 03:30 PM
There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.
How to set up the framework for bootstrap
Apr 07, 2025 pm 03:27 PM
To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.
How to view the date of bootstrap
Apr 07, 2025 pm 03:03 PM
Answer: You can use the date picker component of Bootstrap to view dates in the page. Steps: Introduce the Bootstrap framework. Create a date selector input box in HTML. Bootstrap will automatically add styles to the selector. Use JavaScript to get the selected date.
How to use bootstrap button
Apr 07, 2025 pm 03:09 PM
How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text


