美文网首页
div等元素通过增加tabIndex属性使其支持:focus

div等元素通过增加tabIndex属性使其支持:focus

作者: IT姑凉 | 来源:发表于2020-12-10 23:38 被阅读0次

    由于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