This article brings to you the content is about the CSS link (link) and list (list) code analysis, there is a certain reference value, the need for friends can refer to, I hope to help you.
a:link{ Color:cornflowerblue; Text-decoration:none; Background-color:violet;} /*link indicates that the link has not been clicked on the status *//*decoration (decoration), controls the underline of the link, when the assignment is none without underlining *//*background-color setting the background color */a:visited{ color: Forestgreen;} /*visited indicates that the state has been clicked */a:hover{ Color:blueviolet;} /*hover indicates that the mouse has been slipped over the state */a:active{ Color:forestgreen;} /* link is being clicked on the status */ul li{ List-style-type:armenian;} /*list-style-type control the display effect of the label */ul li{ list-style-image:url ("1.jpg");} /* Replace the logo in front of the label with the image you want to add by importing the local image */ul.ul1{ list-style-position:inside;} ul.ul2{ List-style-position:outside;} /* The variable controls the position of each item on the label, Inside to the right (inside), outside to the outside.