When I type an "@" in a input in IE then the CSS rule stops working, why ?
Code: Select all
* :focus {outline: none;}
<input class="class" type="text" name="name" size="20" maxlength="140">Moderator: General Moderators
Code: Select all
* :focus {outline: none;}
<input class="class" type="text" name="name" size="20" maxlength="140">Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<title>Example</title>
<style type="text/css">* :focus {outline: none;}</style>
</head>
<body>
<a href="http://www.example.com">just a link that will have a border outline after an @ gets typed into the input, only in Microsoft Internet Explorer, versions 7 and 8, in 6 focus outlines gets only achieved with Javascript and this is not an issue</a><br>
<input class="class" type="text" name="name" size="20" maxlength="140">
</body>
</html>