好玩的css小图标 发表于 2017-01-13 | 更新于 2023-01-11 https://css-tricks.com/snippets/html/glyphs/ 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879<!DOCTYPE html><html lang='en'><head> <meta charset='UTF-8'> <title></title> <style> span:nth-child(1):after { content: "\0026"; } span:nth-child(2):after { content: "\003c"; } span:nth-child(3):after { content: "\003e"; } span:nth-child(4):after { content: "\00a5"; } span:nth-child(5):after { content: "\00a9"; } span:nth-child(6):after { content: "\00ab"; } span:nth-child(7):after { content: "\00bb"; } span:nth-child(8):after { content: "\00ae"; } span:nth-child(9):after { content: "\00b1"; } span:nth-child(9):after { content: "\00d7"; } span:nth-child(10):after { content: "\2660"; } span:nth-child(11):after { content: "\2663"; } span:nth-child(12):after { content: "\2666"; } </style></head><body> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span></body><script></script></html>