Remove blue highlight over html image when clicked

后端 未结 4 1031
暖寄归人
暖寄归人 2020-12-31 10:40

I am making a custom Application in Android. I am displaying a html page with an img tag inside a div.

4条回答
  •  佛祖请我去吃肉
    2020-12-31 10:56

    You could use CSS:

    ** HTML **

    
    

    ** CSS **

    .press{
        outline-width: 0;
    }
    
    .press:focus{
        outline: none;
    }
    

    Answer take from here: How to remove the border highlight on an input text element

提交回复
热议问题