smarty tpl文件无法正确读取tpl文件

时间:2015-10-21 13:16:42

标签: html css

我是聪明的新手,所以我不确定这是否会让我错过一些东西,但目前我正试图从css文件中提取一个类。

到目前为止,我设置了2个clases mainbackgroundbodymainbackground只是一个背景颜色,但它没有得到我添加到css的任何值,而body css详细信息则提供给它中的div。

有人能看出我做错了什么吗?

CSS:

@charset "utf-8";
/* CSS Document */
mainbackground{
    background-color:#000       
}

body{
    margin-top:20px;
    margin-left:auto;
    margin-right:auto;
    width:80%;
}

HTML(tpl文件):

<link href="/templates/css/main.css" rel="stylesheet" type="text/css" />    
<div class="mainbackground">
    <div class="body">
        <div align="center">
            <img src="../images/Logo.jpg" width="279" height="215" longdesc="#" />
        </div>
    </div>
</div>

1 个答案:

答案 0 :(得分:1)

您的CSS语法无效。类必须以点为前缀:

@charset "utf-8";
/* CSS Document */
.mainbackground{
    background-color:#000       
}

.body{
    margin-top:20px;
    margin-left:auto;
    margin-right:auto;
    width:80%;
}

没有圆点,它将引用标签名称。 ids将通过#sign

引用