system-generic-fallback-1.html (516B)
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></p> 32 <p lang="ru"></p> 33 <p lang="el"></p> 34 <p lang="he"></p> 35 <p lang="ar"></p> 36 </div> 37 38 </body> 39 </html>