30.vue 666 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="box-30">
  3. <css-grid-common-grid class="one-30"/>
  4. </div>
  5. </template>
  6. <style lang="less">
  7. @or: /;
  8. .box-30 {
  9. padding: 5px;
  10. background-color: white;
  11. border: 2px solid black;
  12. .container {
  13. margin-bottom: 0;
  14. &.one-30 {
  15. grid-template-columns: 100px 100px 100px;
  16. grid-template-rows: 100px 100px 100px;
  17. grid-auto-rows: 50px;
  18. div {
  19. &:nth-child(8) {
  20. grid-row-start: 4;
  21. grid-column-start: 2;
  22. }
  23. &:nth-child(9) {
  24. grid-row-start: 5;
  25. grid-column-start: 3;
  26. }
  27. }
  28. }
  29. }
  30. }
  31. </style>