由于div等元素无法接受键盘或其他用户事件,即不支持:focus伪类,可通过增加tabIndex属性使其支持:focus
div:focus {
background-color:red;
}
。。。
<div tabindex="1"> Section 2 </div>
<div tabindex="2"> Section 3 </div>
由于div等元素无法接受键盘或其他用户事件,即不支持:focus伪类,可通过增加tabIndex属性使其支持:focus
div:focus {
background-color:red;
}
。。。
<div tabindex="1"> Section 2 </div>
<div tabindex="2"> Section 3 </div>
本文标题:div等元素通过增加tabIndex属性使其支持:focus
本文链接:https://www.haomeiwen.com/subject/djedgktx.html
网友评论