官网 管理后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

header.css 566B

123456789101112131415161718192021222324252627
  1. html,
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .header_html_root {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. margin: 0 auto;
  11. width: 1000px;
  12. font-size: 16px;
  13. line-height: 50px;
  14. font-weight: bold;
  15. box-sizing: border-box;
  16. }
  17. .header_html_root .header_html_item {
  18. margin: 0 24px;
  19. padding: 0 10px;
  20. color: #333;
  21. border-bottom: 4px solid transparent;
  22. cursor: pointer;
  23. }
  24. .header_html_root .header_html_item:hover,
  25. .header_html_root .header_html_item.selected {
  26. border-bottom: 4px solid #2d8cf0;
  27. }