我有一个带有浏览器控件的WPF,指向本地HTML文件。
我的foreach($results as $result){
$score = 0;
if($result['year']==$postedyear{$score=$score+30;}
//continue with the other with the same logic.
}
和.html
个文件位于标有.css
的文件夹中,但似乎无论我如何链接WebResources
文件中的样式表样式都没有&#39 ; t show。
index.html
Solution MyProject
-- MyProject
---- Properties
---- References
---- WebResources
---- Index.html
---- Style.css
<!DOCTYPE HTML>
<html>
<head>
<title></title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="WebResources\Style.css" />
<!-- Also Tried "<link rel="stylesheet" href="Full\Path\To\Style.css" /> -->
</head>
<body>
<div class="container">
<h1>This should be very big</h1>
</div>
</body>
</html>
答案 0 :(得分:1)
如果index.html和Style.css位于同一文件夹中,则应使用:
<link rel="stylesheet" href="Style.css" />
我刚试过一个测试应用程序,效果很好。 让我知道。
答案 1 :(得分:0)
你试过正斜杠(/)吗? html页面通常使用这些而不是Windows样式的反斜杠来引用其他资源