国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

HTML+CSS Easy to Get Started with Pseudo-Class Selector

Pseudo-class selector

Why is it called a pseudo-class selector? It allows setting of tags (some state of the tag) that do not exist in html

Grammar: a:hover{

???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????#

Continuing Learning
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>偽類選擇器</title> <style type="text/css"> div:hover{ color:red; } </style> </head> <body> <div>中華民族</div> </html>
submitReset Code