category.css 815 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .category {
  2. display: flex;
  3. height: 50px;
  4. justify-content: center;
  5. align-items: center;
  6. margin-top: 20px;
  7. overflow-x: auto; /* 启用水平滚动 */
  8. white-space: nowrap; /* 防止内容换行 */
  9. -ms-overflow-style: none; /* IE和Edge浏览器隐藏滚动条 */
  10. scrollbar-width: none; /* Firefox浏览器隐藏滚动条 */
  11. }
  12. /* 对于Chrome, Safari和Opera浏览器隐藏滚动条 */
  13. .category::-webkit-scrollbar {
  14. display: none;
  15. }
  16. .category a {
  17. margin-right: 10px;
  18. text-decoration: none;
  19. border: none;
  20. border-radius: 10px;
  21. background-color: #f2f2f2;
  22. color: black;
  23. padding: 6px 10px 6px 10px;
  24. cursor: pointer;
  25. font-size: 14px;
  26. font-weight: bold;
  27. }
  28. .category a.selected {
  29. background-color: black;
  30. color: white;
  31. }
  32. .category a:hover {
  33. background-color: #e5e5e5;
  34. }