调整图像尺寸

  1. <html>
  2.  
  3. <body>
  4.  
  5. <img src="/i/eg_mouse.jpg" width="50" height="50">
  6.  
  7. <br />
  8.  
  9. <img src="/i/eg_mouse.jpg" width="100" height="100">
  10.  
  11. <br />
  12.  
  13. <img src="/i/eg_mouse.jpg" width="200" height="200">
  14.  
  15. <p>通过改变 img 标签的 "height" 和 "width" 属性的值,您可以放大或缩小图像。</p>
  16.  
  17. </body>
  18. </html>