system-generic-fallback-3.html (520B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <title>system generic linked families</title> 5 <meta charset="utf-8"> 6 7 <style> 8 body { 9 margin: 50px; 10 } 11 12 p { 13 margin: 0; 14 display: inline-block; 15 width: 200px; 16 font-size: 32px; 17 line-height: 1.3em; 18 } 19 20 p + p { margin-top: 5px; } 21 22 #test p:before { content: "123abc 途外"; } 23 #test p { font-family: -apple-system; } 24 #test { width: 500px } 25 </style> 26 27 </head> 28 <body> 29 30 <div id=test> 31 <p lang="zh-cn"></p> 32 <p lang="zh-CN"></p> 33 <p lang="zh_cn"></p> 34 <p lang="zh_CN"></p> 35 </div> 36 37 </body> 38 </html>