1083748-ref.html 722 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <style>
  5. @font-face {
  6. font-family: test;
  7. src: url(../fonts/mplus/mplus-1p-regular.ttf);
  8. }
  9. body {
  10. font-family: test;
  11. }
  12. body > div {
  13. width:410px;
  14. height:610px;
  15. float:left;
  16. border:1px solid green;
  17. margin:5px;
  18. }
  19. body > div > div {
  20. width:200px;
  21. height:200px;
  22. border:1px solid red;
  23. line-height:20px;
  24. text-transform:full-width;
  25. float:left;
  26. }
  27. .v-lr { writing-mode:vertical-lr; text-orientation:upright }
  28. p {
  29. margin: 0;
  30. }
  31. b {
  32. background-color: rgb(224,255,224);
  33. }
  34. i {
  35. background-color: rgb(255,224,224);
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div>
  41. <div class="v-lr">
  42. <p>The <i>quick</i> brown fox jumps over the <b>lazy</b> dog.</p>
  43. </div>
  44. </div>
  45. </body>
  46. </html>