div等元素通过增加tabIndex属性使其支持:focus
2020-12-10 本文已影响0人
IT姑凉
由于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>