本文最后更新于:3 个月前
用html语法实现Markdown代码块MAC风格。
说明
用html语法实现Markdown代码块MAC风格,使用时只需要在代码块前粘贴这段代码即可;在typora里看不到效果,在VSCode和网页上可以看到。
代码实现
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| <html> <style> .mac { width:10px; height:10px; border-radius:5px; float:left; margin:10px 0 0 5px; } .b1 { background:#E0443E; margin-left: 10px; } .b2 { background:#DEA123; } .b3 { background:#1AAB29; } .warpper{ user-select: none !important; border-radius:5px; width:auto; } br { user-select: none !important; } .line { position: sticky; left: 18px; text-align:right !important; } .gutter { color: #999; width: 26px; user-select: none !important; display: table-cell !important; border: none !important; background-color: #333; } </style> <div class="warpper"> <div class="mac b1"></div> <div class="mac b2"></div> <div class="mac b3"></div> <div> </html>
|