image_dimensions.html 920 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
  5. <style>
  6. body {
  7. color: #7d7a7a;
  8. font-family: 'trebuchet ms', verdana, sans-serif;
  9. }
  10. img {
  11. margin-bottom: 2em;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <p>All these images should be nearly of the same size</p>
  17. width=150
  18. <br />
  19. <img width="150" src="images/dompdf_simple.png" />
  20. <br />
  21. width: 40mm
  22. <br />
  23. <img style="width: 40mm;" src="images/dompdf_simple.png" />
  24. <br />
  25. width: 4cm
  26. <br />
  27. <img style="width: 4cm;" src="images/dompdf_simple.png" />
  28. <br />
  29. width: 21%
  30. <br />
  31. <img style="width: 21%;" src="images/dompdf_simple.png" />
  32. <br />
  33. width: 150px
  34. <br />
  35. <img style="width: 150px;" src="images/dompdf_simple.png" />
  36. <br />
  37. width: 110pt
  38. <br />
  39. <img style="width: 110pt;" src="images/dompdf_simple.png" />
  40. <br />
  41. </body> </html>