代码:
HTML
<button type="radio"/>
CSS
button:focus {
background: red;
}
当我在手机浏览器中单击它时,样式不起作用。
答案 0 :(得分:0)
CSS中的:focus伪类用于设置当前由键盘定位或由鼠标激活的元素的样式。这是一个例子
HTML
<div>
<button class="btn" type="button" name="button">
click
</button>
CSS
.btn {
color: #000;
background: red;
}
.btn:focus {
background: green;
}
答案 1 :(得分:0)
这不能解决您的问题吗? CSS - :focus Not Working on iOS
a b | c d | e ...
1 2 | 2 3 | 4 ...
4 3 | 1 2 | 3 ...
3 1 | 5 5 | 5 ...