89 lines
1.8 KiB
Vue
89 lines
1.8 KiB
Vue
<template>
|
|
<div id="border-box">
|
|
<border-box-1 class="border-box-item">
|
|
<highlight-code class="javascript">
|
|
// html
|
|
@import wqe from './'
|
|
</highlight-code>
|
|
|
|
<highlight-code>
|
|
<body></body>
|
|
</highlight-code>
|
|
</border-box-1>
|
|
|
|
<border-box-2 class="border-box-item">
|
|
<border-box-2 class="bbi-2">border-box-2</border-box-2>
|
|
</border-box-2>
|
|
|
|
<border-box-3 class="border-box-item">
|
|
border-box-3
|
|
</border-box-3>
|
|
|
|
<border-box-4 class="border-box-item">
|
|
border-box-4
|
|
</border-box-4>
|
|
|
|
<border-box-4 class="border-box-item" :reverse="true">
|
|
border-box-4(reverse)
|
|
</border-box-4>
|
|
|
|
<border-box-5 class="border-box-item">
|
|
border-box-5
|
|
</border-box-5>
|
|
|
|
<border-box-5 class="border-box-item" :reverse="true">
|
|
border-box-5(reverse)
|
|
</border-box-5>
|
|
|
|
<border-box-6 class="border-box-item">
|
|
<border-box-6 class="bbi-6">border-box-6</border-box-6>
|
|
<border-box-6 class="bbi-6">border-box-6</border-box-6>
|
|
<border-box-6 class="bbi-6">border-box-6</border-box-6>
|
|
<border-box-6 class="bbi-6">border-box-6</border-box-6>
|
|
</border-box-6>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'BorderBox'
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
#border-box {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
|
|
.border-box-item {
|
|
position: relative;
|
|
width: 50%;
|
|
height: 300px;
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-around;
|
|
|
|
.highlight-code {
|
|
}
|
|
}
|
|
|
|
.bbi-2 {
|
|
position: absolute;
|
|
width: 200px;
|
|
height: 80px;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
line-height: 50px;
|
|
}
|
|
|
|
.bbi-6 {
|
|
width: 25%;
|
|
height: 100%;
|
|
float: left;
|
|
}
|
|
}
|
|
</style>
|