CSS样式不适用

时间:2016-06-08 09:10:42

标签: html css css-selectors

所以我正在为表单(Style 6)

尝试模板css样式

但是如果我通过外部css文件使用它,我的CSS的第一个元素不适用。如果我将它直接插入到html页面,它确实像往常一样工作。我使用chrome进行测试,但也尝试使用ie。

我的HTML是

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta charset="UTF-8"></meta>
<title>CVS upload page</title>

<link rel="stylesheet" type="text/css" href="static/css/app.css"/>

</head>
<body>

<div class="form-style-6">
<h1>Upload your cvs files</h1>
<form method="POST" enctype="multipart/form-data" action="/dcollect/upload"   name ="uploadForm">
        File one: 
        <input type="file" name="fileLastWeek" 
        accept=".csv, application/vnd.openxmlformats- officedocument.spreadsheetml.sheet, application/vnd.ms-excel"/><br /> 
        File two: 
        <input type="file" name="fileNew"
        accept=".csv, application/vnd.openxmlformats- officedocument.spreadsheetml.sheet, application/vnd.ms-excel"/><br /> 

                    <input type="submit" value="Upload"/>

</form>


</div>

</body>
</html>

我的CSS如下:

<style type="text/css">
.form-style-6 {
font: 95% Arial, Helvetica, sans-serif;
max-width: 400px;
margin: 10px auto;
padding: 16px;
background: #F7F7F7;
}
.form-style-6 h1{
background: #43D1AF;
padding: 20px 0;
font-size: 140%;
font-weight: 300;
text-align: center;
color: #fff;
margin: -16px -16px 16px -16px;
}
.form-style-6 input[type="file"],
.form-style-6 input[type="text"],
.form-style-6 input[type="date"],
.form-style-6 input[type="datetime"],
.form-style-6 input[type="email"],
.form-style-6 input[type="number"],
.form-style-6 input[type="search"],
.form-style-6 input[type="time"],
.form-style-6 input[type="url"],
.form-style-6 textarea,
.form-style-6 select 
{
-webkit-transition: all 0.30s ease-in-out;
-moz-transition: all 0.30s ease-in-out;
-ms-transition: all 0.30s ease-in-out;
-o-transition: all 0.30s ease-in-out;
outline: none;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 100%;
background: #fff;
margin-bottom: 4%;
border: 1px solid #ccc;
padding: 3%;
color: #555;
font: 95% Arial, Helvetica, sans-serif;
}
.form-style-6 input[type="text"]:focus,
.form-style-6 input[type="date"]:focus,
.form-style-6 input[type="datetime"]:focus,
.form-style-6 input[type="email"]:focus,
.form-style-6 input[type="number"]:focus,
.form-style-6 input[type="search"]:focus,
.form-style-6 input[type="time"]:focus,
.form-style-6 input[type="url"]:focus,
.form-style-6 textarea:focus,
.form-style-6 select:focus
{
box-shadow: 0 0 5px #43D1AF;
padding: 3%;
border: 1px solid #43D1AF;
}

.form-style-6 input[type="submit"],
.form-style-6 input[type="button"]{
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
width: 100%;
padding: 3%;
background: #43D1AF;
border-bottom: 2px solid #30C29E;
border-top-style: none;
border-right-style: none;
border-left-style: none;    
color: #fff;
}
.form-style-6 input[type="submit"]:hover,
.form-style-6 input[type="button"]:hover{
background: #2EBC99;
}

</style>

奇怪的是,如果我在css的开头插入一个虚拟元素,它就像魅力一样:

.dummy {
}

知道为什么会这样吗? 感谢。

3 个答案:

答案 0 :(得分:3)

您的CSS文件应包含CSS且 CSS。

<style type="text/css">是HTML,而不是CSS,不应出现在CSS文件中。

CSS解析器试图将其视为选择器,遇到语法错误,然后忽略(正确)无效的第一个规则集。

答案 1 :(得分:2)

如果您的CSS示例位于.css文件中。你的第一封信不需要(<style type="text/css">)。从您的css文件中删除此代码。

答案 2 :(得分:1)

请参阅此处的链接this is your code

你的代码还可以,但是如果你想在外部css文件中编写你的代码,你只需要标记你必须在标签中链接你的css文件,如

<link rel="stylesheet" type="text/css" href="mystyle.css">

,您无需在

中编写css代码
<style type="text/css">code...... </style>

如果你想链接到内部css文件,你将在

中写下css代码
<style type="text/css">css code....... </style>