boxOrient5.vue 681 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <div class="box-orient5">
  3. <section>01</section>
  4. <section>02</section>
  5. <section>03</section>
  6. </div>
  7. </template>
  8. <style>
  9. .box-orient5{
  10. width:100%;
  11. height:200px;
  12. background: aquamarine;
  13. display:-moz-box;
  14. display:-webkit-box;
  15. display:box;
  16. -moz-box-pack:end;
  17. -webkit-box-pack:end;
  18. -o-box-pack:end;
  19. box-pack:end;
  20. }
  21. .box-orient5 section{
  22. line-height: 100px;
  23. width: 100px;
  24. text-align: center;
  25. color:#fff;
  26. text-shadow: 1px 1px 1px rgb(0,0,0)
  27. }
  28. .box-orient5 section:nth-child(1){
  29. background:orange;
  30. }
  31. .box-orient5 section:nth-child(2){
  32. background:purple;
  33. }
  34. .box-orient5 section:nth-child(3){
  35. background:green;
  36. }
  37. </style>