- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width">
- <style>
- .nav-box {
- display: flex;
- list-style: none;
- font-size: 14px;
- }
- .nav-box li {
- white-space: nowrap;
- color: #019fe9;
- background: #edf9ff;
- counter-increment: listCounter;
- clip-path: polygon(87% 0, 100% 50%, 87% 100%, 0 100%, 13% 50%, 0 0);
- line-height: 40px;
- padding: 0 25px;
- margin-right: -10px;
- }
-
- .nav-box li::before {
- content: counter(listCounter) "-";
- }
-
- .nav-box .active {
- color: #fcfefe;
- background: #009fe9;
- }
- .nav-box .active ~ li {
- color: #8e8e8e;
- background: #ebedf0;
- }
- </style>
- </head>
-
-
- <body>
- <!-- 容器 -->
- <ol class="nav-box">
- <li><a href="">规则说明</a></li>
- <li><a href="">参与活动</a></li>
- <li class="active" aria-current="true"><a href="">参与抽奖</a></li>
- <li><a href="">奖品发放</a></li>
- <li><a href="">查看结果</a></li>
- </ol>
- </body>
- </html>