常用,记录一下。
css修改滚动条样式:
/*滚动条的宽度*/
::-webkit-scrollbar {
width: 6px;
}
//滚动条轨道的颜色
::-webkit-scrollbar-track {
/*background black*/
border-radius: 5px;
}
//滚动条的颜色
::-webkit-scrollbar-thumb {
background: #B5B5B5;
border-radius: 5px;
}
//鼠标经过滚动条时的颜色
::-webkit-scrollbar-thumb:hover {
background: #dad6bf;
}
简单的隔行变色表格样式
<div class="table-box">
<table border="0">
<tr class="odd-tr">
<th>地区</th>
<th>确诊</th>
<th>治愈</th>
<th>死亡</th>
</tr>
<tr :class="{'even-tr':index%2==0,'odd-tr':index%2==1}"
v-for="(item,index) in tableListData" :key="index">
<td v-for="(item2,index) in item" :key="index">{{item2}}</td>
</tr>
<!--<tr class="odd-tr">-->
<!--<td>武汉</td>-->
<!--<td>20</td>-->
<!--<td>10</td>-->
<!--<td>1</td>-->
<!--</tr>-->
</table>
</div>
//css样式
.table-box {
height 100%
margin-left 5%
width 90%
overflow-y auto
background #3A3F44
}
table {
border-collapse collapse;
color FontColorEee
width 100%
text-align center
th {
font-size 14px
padding 5px 0
}
td {
font-size 12px
padding 5px 0
}
.odd-tr {
background #2E3338
}
.even-tr {
background #3A3F44
}
}
来源:CSDN
作者:half_sugar
链接:https://blog.csdn.net/half_sugar/article/details/104318358