您好,登錄后才能下訂單哦!
傳統使用width屬性配合float總是最右邊出現間隙,需要實現任意個DIV的完美等分,包括橫向和縱向
父元素樣式
/*盒模型*/
display: -webkit-box;
display: -moz-box;
display: box;
/*橫向or縱向*/
-webkit-box-orient: horizontal; /* 垂直是vertical */
-moz-box-orient: horizontal; /* 垂直是vertical */
box-orient: horizontal;
子元素樣式
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
<template>
<div class="main-box">
<div class="main-box-content">1</div>
<div class="main-box-content">2</div>
<div class="main-box-content">3</div>
</div>
</template>
<script>
import serialport from 'serialport'
export default {
name: "MainPage",
data: function () {
return {
serialPortList: []
}
},
methods: {
handleScanSerialPortList: function () {
serialport.list().then(
ports => {
console.log(ports)
}
)
}
}
}
</script>
<style scoped>
.main-box {
/*盒模型*/
display: -webkit-box;
display: -moz-box;
display: box;
/*橫向or縱向*/
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
box-orient: horizontal;
}
.main-box-content {
-webkit-box-flex: 1;
-moz-box-flex: 1;
box-flex: 1;
}
</style>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。