css修改滚动条的默认样式、input的placeholder的默认样式

css修改滚动条的默认样式:

.box::-webkit-scrollbar {/*滚动条整体样式*/
      width: 4px;     /*高宽分别对应横竖滚动条的尺寸*/
      height: 4px;
 }
.box::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
      border-radius: 5px;
      -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
      background: rgba(0,0,0,0.2);
}

css修改H5中input的默认样式:

::-webkit-input-placeholder{
     color:red;      //以及其他的样式
}

猜你喜欢

转载自blog.csdn.net/qq_35504206/article/details/80787165