在创建网页时,我注意到在Firefox中错误地生成双引号(Ubuntu为54.0),如图所示: image
这应该是:信息,"在Proc。
这在chrome中看起来不错。
我在html代码中使用了以下字体:
<head>
<link href="https://fonts.googleapis.com/css?family=Lato:300" rel="stylesheet">
<style>
body {
margin:0;
font-size: 100%;
font-family: 'Lato', sans-serif;
}
</style>
</head>
答案 0 :(得分:0)
如果您使用的是html4,可以尝试:
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
HTML5
<meta charset="UTF-8">
https://www.w3schools.com/html/html_charset.asp
你应该关闭样式标签:
<head>
<link href="https://fonts.googleapis.com/css?family=Lato:300"
rel="stylesheet">
<style>
body {
margin:0;
font-size: 100%;
font-family: 'Lato', sans-serif;
}
</style>
</head>
不要忘记html标签。
我希望这对你有所帮助。