名言簿丨mottobook
相信文字的力量!名人名言,经典语录,深度好文,哲理故事,寓言,格言,箴言,座右铭精选,文字的光辉,犹如黑夜的明星,海上的灯塔,指引前行的方向,在潜移默化中打开格局,提升自我,成就人生!

wordpress修改搜索框input默认背景颜色

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    color: -internal-light-dark(black, white) !important;
}

将上面代码修改为:

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: 		DarkTurquoise;
    transition: background-color 5000s ease-out 0.5s;
}

搜索框选中状态出现边框如何取消

.search-form input.search-field:focus{
    outline: none;
}
Scroll Up