Jump to content
  • 0

Outline Для Ie8


Funtik44
 Share

Question

Привет всем, еще раз.

При использование параметра outline: none; пропадает точечное обрамление ссылок, чего я и добивался, но происходит это только в FF, а в IE они (обрамление) не пропадают? Нужно использовать хак? Как избавится от обрамления?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Избавиться конечно можно, но вот нужно ли это делать? Подумайте о людях которые юзают вашу страничку без мышки (при помощи таба)...

Что-то вроде такого:

window.onload = function() {
var a = document.links;

for (var i = 0, l = a.length; i < l; i++) {
if (document.addEventListener) {
a[i].addEventListener('click', function() {a[i].blur();}, false);
} else if (document.attachEvent) {
a[i].attachEvent('onclick', function() {a[i].blur();});
} else {
a[i].onclick = function() {
a[i].blur();
}
}
}
}

Link to comment
Share on other sites

  • 0

Я никогда не боролся с outline, так как считаю это нужной фичей браузера.

Но также никогда и небыло проблем убрать ее.

Можете привести пример где ее нельзя убрать?

Почему у меня всегда работает

a{outline:none;}

или

a{outline:0;}

?

ОС - ХР

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy