27.vue 477 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="box-27">
  3. <css-grid-common-grid class="one-27"/>
  4. </div>
  5. </template>
  6. <style lang="less">
  7. @or: /;
  8. .box-27 {
  9. padding: 5px;
  10. background-color: white;
  11. border: 2px solid black;
  12. .container {
  13. margin-bottom: 0;
  14. &.one-27 {
  15. grid-template-columns: repeat(3,100px);
  16. grid-template-rows: repeat(3, 100px);
  17. justify-content: space-between;
  18. align-content: space-between;
  19. }
  20. }
  21. }
  22. </style>