美文网首页CSS
前端自定义浏览器滚动条样式

前端自定义浏览器滚动条样式

作者: 埼玉的头发 | 来源:发表于2024-03-20 16:44 被阅读0次

xx.html

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-thumb {
      background: #c29e54;
      border-radius: 5px;
    }
  </style>
</head>
<body>
...
</body>
</html>

xx.css

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-thumb {
  background: #c29e54;
  border-radius: 5px;
}

相关文章

网友评论

    本文标题:前端自定义浏览器滚动条样式

    本文链接:https://www.haomeiwen.com/subject/scvxtjtx.html