| 1234567891011121314151617181920212223242526272829303132333435363738 |
- .category {
- display: flex;
- height: 50px;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- overflow-x: auto; /* 启用水平滚动 */
- white-space: nowrap; /* 防止内容换行 */
- -ms-overflow-style: none; /* IE和Edge浏览器隐藏滚动条 */
- scrollbar-width: none; /* Firefox浏览器隐藏滚动条 */
- }
- /* 对于Chrome, Safari和Opera浏览器隐藏滚动条 */
- .category::-webkit-scrollbar {
- display: none;
- }
- .category a {
- margin-right: 10px;
- text-decoration: none;
- border: none;
- border-radius: 10px;
- background-color: #f2f2f2;
- color: black;
- padding: 6px 10px 6px 10px;
- cursor: pointer;
- font-size: 14px;
- font-weight: bold;
- }
- .category a.selected {
- background-color: black;
- color: white;
- }
- .category a:hover {
- background-color: #e5e5e5;
- }
|