我试图在utf8
中的html5
中设置Xampp
。
当我运行没有任何样式表的代码时,它运行得很好:
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Test</title>
</head>
<body>
My Output Compañia 2014
</body>
</html>
我的输出:
My Outpul Compañia 2014
但是当我在头部添加样式表时:
<!DOCTYPE html>
<html lang="es-ES">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Test</title>
<link rel="stylesheet" href="/test/css/style.css" type="text/css" />
</head>
<body>
My Output Compañia 2014
</body>
</html>
Utf8
字符集在输出中失败:
My Output CompaÒia 2014
有什么想法可以解决这个问题?我在AddDefaultCharset UTF-8
中尝试使用.htaccess
,在utf-8
中声明css
,但没有任何效果。
答案 0 :(得分:1)
查看styesheets中正在设置的字体是否具有兼容的utf 8字符集,并且此特定字符的代码将映射到字体中的相同字符。