CSS pseudo-clas...LOGIN

CSS pseudo-class

CSS Pseudo-classes

CSS pseudo-classes are used to add some special effects to selectors.


Syntax

Pseudo class syntax:

selector:pseudo-class {property:value;}

CSS classes can also use pseudo-classes:

selector.class:pseudo-class {property:value;}


##anchor pseudo-class

In browsers that support CSS, different states of links can be displayed in different ways. In our css link we have learned a little bit

Example

      <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文网(php.cn)</title>
    <style>
        a:link {color:#FF0000;}    /* 未访问的链接 */
        a:visited {color:#00FF00;} /* 已浏览过的链接 */
        a:hover {color:#FF00FF;}   /* 鼠标划过的链接 */
        a:active {color:#0000FF;}  /* 已选中的链接 */
    </style>
</head>

<body>
<p><b><a href="" target="_blank">这是一个链接</a></b></p>
<p><b>注意:</b> a:hover 必须在 a:link 和 a:visited 之后,需要严格按顺序才能看到效果。</p>
<p><b>注意:</b> a:active 必须在 a:hover 之后。</p>
</body>
</html>

Note: a:hover is required After a:link and a:visited, they need to be in strict order to see the effect.

Note: a:active must come after a:hover.

Note: Pseudo-class names are not case-sensitive.

Run the program and try it


Pseudo classes and CSS classes

Pseudo classes can be used in conjunction with CSS classes :

a.red:visited {color:#FF0000;}

<a class="red" href="css-syntax.html ">CSS Syntax< /a>

If the link in the above example has been visited, it will appear in red.


Example

Use: focus

  <!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>php中文网(php.cn)</title>
    <style>
        input:focus
        {
            background-color:yellow;
        }
    </style>
</head>

<body>
<form action="" method="get">
    姓名: <input type="text" name="fname" /><br>
    留言: <input type="text" name="content" /><br>
    <input type="submit" value="Submit" />
</form>


</body>
</html>

Run the program and try it


All CSS pseudo-classes/elements

##:after p:afterInsert content after each <p> element:lang(p:lang(it)Select a starting value for the lang attribute of the <p> element
SelectorExampleExample description
:checkedinput :checkedSelect all checked form elements
:disabledinput:disabledSelect all disabled form elements
:emptyp:emptySelect all p elements that have no child elements
:enabled input:enabledSelect all enabled form elements
:first-of-typep:first-of -typeSelects the first p child element of each parent element that is a p element
:in-rangeinput:in-range Select values ​​within the specified range of elements
:invalidinput:invalidSelect all invalid elements
:last-childp:last-childSelect the last child element of all p elements
:last-of-typep:last-of-typeSelect each p element that is the last p element of its parent element
:not(selector):not(p)Select all elements except p
:nth-child(n)p:nth-child(2)Select the second child element of all p elements
:nth-last-child(n)p:nth-last-child(2)Select the second-to-last child element of all p elements
:nth-last-of- type(n)p:nth-last-of-type(2)Select the second to last child element of p
:nth-of-type(n)p:nth-of-type(2)Select all p elements whose second child element is p
:only-of-typep:only-of-typeSelect all elements with only one child element being p
:only-childp:only-childSelect all p elements that have only one child element
:optionalinput:optionalSelect element attributes without "required"
:out-of-rangeinput :out-of-rangeSelect element attributes with values ​​outside the specified range
:read-onlyinput:read-onlySelect element attributes with read-only attributes
:read-writeinput:read-writeSelect elements without read-only attributes Element attributes
:requiredinput:requiredSelect the element attributes specified by the "required" attribute
:rootrootSelect the root element of the document
:target#news:target Select the current active #news element (the click URL contains the name of the anchor)
:validinput:validSelect all attributes with valid values
:linka :linkSelect all unvisited links
:visiteda:visitedSelect all visited links
:activea:activeSelect the active link
:hovera:hoverThe state of placing the mouse on the link
:focusinput:focusSelect element input After has focus
:first-letterp:first-letterSelect the first letter of each <p> element
:first-linep:first-lineSelect the first line of each <p> element
:first-childp:first-childThe selector matches the <]p> element that is the first child element of any element
:beforep:beforeInsert content before each <p> element
language)



##Next Section

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>php中文网(php.cn)</title> <style> input:focus { background-color:yellow; } </style> </head> <body> <form action="" method="get"> 姓名: <input type="text" name="fname" /><br> 留言: <input type="text" name="content" /><br> <input type="submit" value="Submit" /> </form> </body> </html>
submitReset Code
ChapterCourseware