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

CSS 自定义css样式汇总

程序员文章站 2022-05-15 18:38:30
...
/* 自定义查询按钮样式 */
.query {
    width: 0.4rem;
    height: 0.22rem;
    line-height: 0.22rem;
    border: 1px solid #C6C6C6;
    outline: 0;
    cursor: pointer;
}
/* 不写 :active 状态,没有类似点击弹起效果 */
.query:active {
    box-shadow: inset 0 3px 5px 0 rgba(0,0,0,0.2);
}