consecutive-inline-ref.html 522 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML>
  2. <style>
  3. div {
  4. width: 450px;
  5. font-size: 34px;
  6. }
  7. a {
  8. font-weight: bold;
  9. line-height: 1.1em;
  10. color: blue;
  11. }
  12. a#first {
  13. font-size: 34px;
  14. font-style: italic;
  15. }
  16. a#second {
  17. font-size: 40px;
  18. }
  19. </style>
  20. <!--
  21. In a 450 px container, the minimum font size at 15em per line is 30px. This
  22. means we map 0px-45px into 30px-45px, so 12px gets mapped to 34px and 30px
  23. gets mapped to 40px.
  24. -->
  25. <div>
  26. <a id="first" href="">Hello</a><a id="second" href="">Worldz</a>
  27. </div>