中建四局(CIM+):完成倾斜摄影布局

This commit is contained in:
Jack 2022-08-25 11:35:28 +08:00
parent 1be8bee32d
commit dac68308e8

View File

@ -1,6 +1,8 @@
<template>
<Card title="倾斜摄影">
倾斜摄影
<div class="videos">
<div class="video" v-for="i in 6" :key="i"></div>
</div>
</Card>
</template>
@ -11,4 +13,19 @@ export default {
}
</script>
<style></style>
<style lang="less" scoped>
.videos {
box-sizing: border-box;
padding-top: 10px;
width: 100%;
height: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
.video {
width: 48%;
height: 30%;
border: 1px solid skyblue;
}
}
</style>