HTMLPage1.html 986 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>菜鸟教程(runoob.com)</title>
  6. <style>
  7. html, body {
  8. background:grey;
  9. }
  10. .star-bottom:before {
  11. content: '';
  12. position: absolute;
  13. top: 150px;
  14. left: 50px;
  15. border-right: 16px solid transparent;
  16. border-top: 16px solid red;
  17. border-left: 16px solid transparent;
  18. }
  19. .star-bottom:after {
  20. content: '';
  21. position: absolute;
  22. top: 150px;
  23. left: 52px;
  24. border-right: 14px solid transparent;
  25. border-top: 14px solid #fff;
  26. border-left: 14px solid transparent;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <div style="width:250px;height:150px;border:1px solid red;position: absolute;
  32. top: 200px;
  33. left: 200px;">
  34. <div class="star-bottom"><p>测试</p></div>
  35. </div>
  36. </body>
  37. </html>