避免滚动条改变页面尺寸
.element-class {
scrollbar-gutter: stable both-edges;
}避免 Hover 边框产生元素位移
添加透明边框
.item {
background: #eee;
border: 1px solid transparent;
}
.item:hover {
background: #e1e1e1;
border: 1px solid #d0d0d0;
}.element-class {
scrollbar-gutter: stable both-edges;
}添加透明边框
.item {
background: #eee;
border: 1px solid transparent;
}
.item:hover {
background: #e1e1e1;
border: 1px solid #d0d0d0;
}