body::after{ content: "I don't know what you are using to click" }
@media (pointer: coarse) {
body { background: crimson }
body::after{ content: "Your primary input mechanism is a finger" }
}
@media (pointer: fine) {
body { background: goldenrod }
body::after{ content: "Your primary input mechanism is a mouse" }
}
3条答案
按热度按时间enyaitl31#
您可以使用
:focus
第一个
尝试
Source
quhf5bfb2#
试试这个:
643ylb083#
使用:active。
第一个
请不要使用:focus来表示按下状态。它是用来选择元素的,例如,使用Tab键。