我有一個簡單的 BootstrapVue 表。
CSS 在 App.vue
中定義。這是 App.vue
的程式碼。
<template> <div id="app"> <!-- <img alt="Vue logo" src="./assets/logo.png"> --> <TestTable msg="testing"/> </div> </template> <script> import TestTable from './components/TestTable.vue' export default { name: 'App', components: { TestTable } } </script> <style> #app { font-family: Avenir, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
這是 TestTable.vue
的程式碼。
<template> <div> <b-table striped hover :items="items"></b-table> </div> </template> <script> export default { data() { return { items: [ { age: 40, first_name: 'Dickerson', last_name: 'Macdonald' }, { age: 21, first_name: 'Larsen', last_name: 'Shaw' }, { age: 89, first_name: 'Geneva', last_name: 'Wilson' }, { age: 38, first_name: 'Jami', last_name: 'Carney' } ] } } } </script>
margin-top: 60px
在 App.vue
中定義。我想修改 TableTest.vue
,使其覆寫 App.vue
中 CSS 的邊距頂部。我想要 margin-top: 0px
用於 TableTest.vue
。
我正在使用 Vue v2.6 和 Bootstrap-vue。
你可以嘗試
margin-top:-60px;
我之前評論過您的問題,您在父組件中應用了
margin-top: 60px
,而子元件有自己的盒子模型。新增程式碼片段以顯示元件的結構: