02.html 753 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. img.top {
  8. vertical-align: text-top;
  9. }
  10. img.bottom {
  11. vertical-align: text-bottom;
  12. }
  13. p.shadow {
  14. text-shadow: 2px 2px 2px red;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <p>一个<img src="yql.png" alt="w3cschool" width="270" height="50"/>默认对齐的图像。</p>
  20. <p>一个<img class="top" src="yql.png" alt="w3cschool" width="270" height="50"/> text-top 对齐的图像。</p>
  21. <p>一个<img class="bottom" src="yql.png" alt="w3cschool" width="270" height="50"/> text-bottom 对齐的图像。</p>
  22. <p class="shadow">
  23. 阴影效果的文字
  24. </p>
  25. </body>
  26. </html>