Css不会改变Opera中的文本颜色

时间:2016-05-18 10:21:36

标签: html css opera

我正在学习使用css外部风格。内容只是一个句子而css会将句子颜色更改为红色。我在Codepend.io和IE上试过它,它运行正常。但在Opera中,句子颜色不会变红。我正在使用Opera 37.0.2178.43。那么我怎么能让Opera显示文字颜色呢?

p {color:red;}
<html lang="vi">
    <head>
        <meta charset="utf-8" />
        <title>Embedding CSS in External Styles</title>
        <link rel="stylesheet" href="style.css" />
    </head>	
    <body>
        <p>This is a paragraph</p>
    </body>
</html>

这是图片 enter image description here

1 个答案:

答案 0 :(得分:0)

发现问题。这是因为我将html文件的编码设置为Unicode。谢谢@MarcosPérezGude