App下載
首頁htmlui_olHTML Element Style - 如何滾動(dòng)列表樣式

HTML Element Style - 如何滾動(dòng)列表樣式

我們想知道如何滾動(dòng)列表樣式。


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
li:first-child {
  color: blue;
}

li:hover {
  color: red;
}

ul:hover li:first-child {
  color: black;
}

ul:hover li:first-child:hover {
  color: red;
}
</style>
</head>
<body>
  <ul>
    <li>1111</li>
    <li>2222</li>
    <li>3333</li>
  </ul>
</body>
</html>