我尝试更改 v-data-table (vuetify) 的样式。此代码更改所有地方的滚动条(浏览器也滚动条)。
<style>
::-webkit-scrollbar {
width: 24px;
height: 8px;
background-color: #143861;
}
</style>
如何更改特定元素的滚动样式?这些解决方案不起作用:
<style>
#element::-webkit-scrollbar {
width: 24px;
height: 8px;
background-color: #143861;
}
</style>
<v-data-table
:headers="headers"
:items="items"
item-key="id"
id="element"
>
</v-data-table>
<style>
.element::-webkit-scrollbar {
width: 24px;
height: 8px;
background-color: #143861;
}
</style>
<v-data-table
:headers="headers"
:items="items"
item-key="id"
class="element"
>
</v-data-table>