我发现了一个关于输入here的webkit伪元素的有趣帖子,所以我需要从输入类型=“时间”中删除取消按钮,但是根据murthy定律,这个伪元素没有在任何地方描述.如果有人知道请发帖给我.
附:我已经尝试过了
::-webkit-search-cancel-button
::-webkit-input-cancel-button
::-webkit-time-cancel-button
::-webkit-time-cancel-button
当然有一种方法可以做到这一点:在元素之后,但我不相信没有伪元素
input[type="time"]::after
{
content: "";
background: #FFF;
height: 20px;
width: 10px;
position: absolute;
margin: 0 -10px;
}
最佳答案
原文链接:/css/427594.html