我一定很累。CSS 没有导入 HTML。所有显示的是:测试测试测试(在不同的行)另外,在网格 CSS 中只有 920.gs:
<!DOCTYPE html>
<html>
<head>
<title>Some title</title>
<link rel="stylesheet" type="text/css" href="/css/styles.css" />
</head>
<body>
<div class="container_12" id="content">
<div class="grid_3" id="leftside">
<h1>Test</h1>
</div>
<div class="grid_6">
<h1>Test</h1>
</div>
<div class="grid_3" id="rightside">
<h1>Test</h1>
</div>
</div>
</body>
</html>
附上 CSS:
@import url("http://fonts.googleapis.com/css?family=Days+One&effect=font-effect-fire- animation");
@import url("css/grid.css"")
body {
background-attachment:fixed;
background-repeat:no-repeat;
background-color:#7FA8FF;
background-position:top;
background-image:url("../images/background.png");
text-align: center;
font-family: 'Days One', sans-serif;
}