我在我的Html中加载一个CSS文件,如下所示:
<head>
<title>H e a d s p a c e</title>
<style>
<link rel="stylesheet" href="styles.css" type = "text/css">
</style>
</head>
而我的css文件如下所示:
body {
width: 100%;
height: 100%;
background: #11e8bb; /* Old browsers */
background: -moz-linear-gradient(top, #11e8bb, #8200c9); /* FF3.6-15 */
background: -webkit-gradient(linear, center top, center bottom, from(#11e8bb), to(#8200c9));
background: -webkit-linear-gradient(top, #11e8bb,#8200c9); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #11e8bb ,#8200c9); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#11e8bb', endColorstr='#8200c9',GradientType=0 ); /* IE6-9 */
}
但它实际上并没有显示任何内容。背景简直就是白色。在对其他stackoverflow /在线论坛的无数次观看之后,我感到无助 - 关于什么是错误的任何想法?
这两个文件都在服务器上并位于同一目录中。非常感谢任何帮助!
答案 0 :(得分:1)
请勿将样式表的链接放在样式标记内。
<head>
<link rel="stylesheet" href="styles.css" type = "text/css">
</head>
它应该如何。 否则你的代码就可以了。