columnfill-auto-ref.html 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <html>
  2. <head>
  3. <link rel="stylesheet" type="text/css" href="ahem.css" />
  4. <style>
  5. html,body {
  6. color:black; background-color:white; font-size:16px; padding:5px; margin:0;
  7. }
  8. mask {
  9. position: absolute;
  10. top:0; bottom:0; left:8px; width:5px;
  11. background: black;
  12. }
  13. .rel {
  14. position: relative;
  15. }
  16. a {
  17. position: absolute;
  18. width: 10px;
  19. height: 10px;
  20. bottom: 0;
  21. left: 0;
  22. background: blue;
  23. }
  24. f {
  25. position: fixed;
  26. width: 10px;
  27. height: 10px;
  28. bottom: 0;
  29. left: 100px;
  30. background: lime;
  31. }
  32. td.text {
  33. width: 12em;
  34. height: 8em;
  35. text-align: left;
  36. font-family: ahem;
  37. font-size: 12pt;
  38. line-height: 1.1;
  39. }
  40. table {
  41. font-family: ahem;
  42. font-size: 12pt;
  43. line-height: 1.1;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <table cellpadding=0 cellspacing=0 class="rel">
  49. <tr>
  50. <td class="text" valign="top"><a></a>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed</td>
  51. </tr>
  52. </table>
  53. <table cellpadding=0 cellspacing=0 class="rel">
  54. <tr>
  55. <td class="text" valign="top"><a></a>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed</td>
  56. </tr>
  57. </table>
  58. <table cellpadding=0 cellspacing=0 class="rel">
  59. <tr>
  60. <td class="text" valign="top"><f></f>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed</td>
  61. </tr>
  62. </table>
  63. <table cellpadding=0 cellspacing=0>
  64. <tr>
  65. <td class="text" valign="top"><a></a>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed</td>
  66. </tr>
  67. </table>
  68. <table cellpadding=0 cellspacing=0>
  69. <tr>
  70. <td class="text" valign="top"><f style="left:120px"></f>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Sed</td>
  71. </tr>
  72. </table>
  73. <mask></mask>
  74. </body>
  75. </html>