HTML and CSS learning day5

  • Pseudo-class selectors
    a:linkunvisited links
    a:visitedvisited links
    a:hovermouse over the link will change
    a:activethe mouse to click on the link yet to release
<style>
        a:link {
    
     
     
            color: rgb(0, 0, 0);
            text-decoration: none;
        }
        

Guess you like

Origin blog.csdn.net/weixin_42778611/article/details/114730349