33.vue 536 B

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