12345678910111213141516171819202122232425262728293031 |
- <template>
- <div class="box-34">
- <css-grid-common-grid class="one-34"/>
- </div>
- </template>
- <style lang="less">
- @or: /;
- .box-34 {
- padding: 5px;
- background-color: white;
- border: 2px solid black;
- .container {
- margin-bottom: 0;
- &.one-34 {
- grid-template-columns: 100px 100px 100px;
- grid-template-rows: 100px 100px 100px;
- grid-auto-rows: 100px;
- div {
- &:nth-child(1) {
- grid-column-start: span 2;
- }
- }
- }
- }
- }
- </style>
|