如何在<input type =“time”/>中选择css指示符?

时间:2017-05-29 16:37:59

标签: css html5 input css-selectors frontend

如何使用<input type="time">中的css指示符(箭头)进行选择?

我想给它们打造样式。

1 个答案:

答案 0 :(得分:4)

input[type="time"]{
    /**style goes here **/
 }

如果你想选择微调器(你说&#34;箭头&#34;)你可以通过下面的CSS来做到这一点,

input[type="number"]::-webkit-inner-spin-button{
        /**style goes here **/
    }

但不幸的是,这适用于chrome,但不适用于firefox,因为firefox不适用于webkit引擎,

最重要的是,我想建议你,像这个代码链接一样制作自定义微调器(你说&#34;箭头&#34;)。希望你能以这种方式找到解决方案。 :)

https://codepen.io/komarovdesign/pen/PPRbgb