欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HTML页面标签的CSS自定义

程序员文章站 2022-06-09 11:37:45
...
progress {
    -webkit-appearance: none;
    width: 0.6rem;
    height: 0.16rem;
}

progress::-webkit-progress-bar{
    background-color: #e7f1fb;
}

progress::-webkit-progress-value{
    background-color: #f57c6b;
}