简体   繁体   中英

jQueryUI dialog selected image in IE

I'm using jQueryUI dialog to open some content, but in IE it appears that a "border" is added around images. When I click within the dialog it deselects it (so not a border but just a selected border, not sure if that makes sense).

Is there a way for me to remove it? As an example, click on "Read More" on the first competition here ( Example ) to view the border around the "Barrier" logo.

Try

a:active, a:selected, a:visited { 
    border: none;
    outline: none;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM