system-generic-fallback-1.html 516 B

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