Firefox 15.0 ignores meta charset="uft-8"

Posted by flapjack on Stack Overflow See other posts from Stack Overflow or by flapjack
Published on 2012-09-05T09:34:30Z Indexed on 2012/09/05 9:38 UTC
Read the original article Hit count: 187

Filed under:
|

I have this simple html

<!Doctype html>
<head>
<title>Uft-8</title>
<meta charset="uft-8">
<style type="text/css">
.tr_deco{
background-color:pink;
border:1px solid red;
}
</style>
</head>
<body>
<a class="new_krud_slider" href="">make new</a>
</body>
</html>

When i try out the code on firefox 15,i get this firebug error.

An unsupported character encoding was declared for the HTML document using a meta tag. The declaration was ignored.

My firebug version is 1.7.3. What could be causing this error?.

© Stack Overflow or respective owner

Related posts about html5

Related posts about firefox