Reference
Remove Whitespace Between Inline-Block Elements
svg 改变颜色
父元素设置 red
无效,因为 <path>
标签的最后默认设置了 blue
,此时该 svg
图片是 蓝色的
<div style="color: red">
<svg width="1em" height="1em" viewBox="0 0 1024 1024">
<path d="M863.1 518.5H505.5V160.9c0-4.4-3.6-8-8..." fill="blue"/>
</svg>
</div>
svg
标签中加入fill="currentColor"
path
标签中去掉fill="blue
<div style="color: red">
<svg width="1em" height="1em" fill="currentColor" viewBox="0 0 1024 1024">
<path d="M863.1 518.5H505.5V160.9c0-4.4-3.6-8-8..."/>
</svg>
</div>
让CSS flex布局最后一行列表左对齐的N种方法
set scrollbar style
body::-webkit-scrollbar {
width: 1em;
}
body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}