HTML+CSS Easy to Get Started with Hyperlink Status
What are the states of a hyperlink?
a:link When initializing
a:hover When hovering
a:active When activated
a:visited After visiting
, we will explain in detail through an example
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>超链接的状态</title>
<style type="text/css">
a:link{
color:red; /*初始化时,链接的颜色为红色*/
}
a:hover{
color:black; /*悬停时,当鼠标放在上面,不点击时,为黑色*/
}
a:active{
color:green; /*激活时,鼠标放在上面点击,但是不松开鼠标是的颜色,绿色*/
}
a:visited{
color:yellow; /*访问过后,即当鼠标点击链接以后的样式*/
}
</style>
</head>
<body>
<a href="#">PHP 中文网</a>
</body>
</html>
new file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>超链接的状态</title>
<style type="text/css">
a:link{
color:red; /*初始化时,链接的颜色为红色*/
}
a:hover{
color:black; /*悬停时,当鼠标放在上面,不点击时,为黑色*/
}
a:active{
color:green; /*激活时,鼠标放在上面点击,但是不松开鼠标是的颜色,绿色*/
}
a:visited{
color:yellow; /*访问过后,即当鼠标点击链接以后的样式*/
}
</style>
</head>
<body>
<a href="#">PHP 中文网</a>
</body>
</html>
Preview
Clear
- Course Recommendations
- Courseware download
The courseware is not available for download at the moment. The staff is currently organizing it. Please pay more attention to this course in the future~
Students who have watched this course are also learning
Let's briefly talk about starting a business in PHP
Quick introduction to web front-end development
Large-scale practical Tianlongbabu development of Mini version MVC framework imitating the encyclopedia website of embarrassing things
Getting Started with PHP Practical Development: PHP Quick Creation [Small Business Forum]
Login verification and classic message board
Computer network knowledge collection
Quick Start Node.JS Full Version
The front-end course that understands you best: HTML5/CSS3/ES6/NPM/Vue/...[Original]
Write your own PHP MVC framework (40 chapters in depth/big details/must read for newbies to advance)
















