我最近在记事本中使用一些HTML进行了测试设计,并且效果非常好。我决定保留设计并将网站扩展为多页网站 - 因此CSS需要进入外部CSS文件。我这样做了,CSS立即停止了我的页面工作。
我尝试将CSS编码粘贴回HTML文件,但仍然无法正常工作。我花了几个小时试图解决问题,但它仍然不适合我。
我错过了一个明显的错误吗?
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="Test">
<meta name="keywords" content="test">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<title>West</title>
<style type="text/css">
html, body {
height100%;
margin 0px;
padding 0px;
}
video#bgvid {
position fixed;
right 0;
bottom 0;
min-width 100%;
min-height 100%;
width auto;
height auto;
z-index -100;
background url(imgillamal.png) no-repeat;
background-size cover;
}
#wrapper {
background-color rgba(255, 255, 255, 0.7);
-webkit-box-shadow 0px 0px 54px -7px rgba(0, 0, 0, 0.75);
-moz-box-shadow 0px 0px 54px -7px rgba(0, 0, 0, 0.75);
box-shadow 0px 0px 54px -7px rgba(0, 0, 0, 0.75);
width 800px;
height 100%;
min-height 100%;
margin auto;
}
#header {
width 800px;
height 230px;
margin auto;
padding-top 2px;
}
.map_image {
display block;
width 800px;
height 230px;
position relative;
background-position 0 0;
background-repeat no-repeat;
}
.map_image .map_link {
display block;
position absolute;
text-indent -999em;
overflow hidden;
}
.map_image #map_link_0 {
width 133px;
height 131px;
top 50px;
left 92px;
}
.map_image #map_link_1 {
width 156px;
height 112px;
top 58px;
left 536px;
}
.map_image #map_link_2 {
width 54px;
height 46px;
top 54px;
left 34px;
}
.map_image #map_link_3 {
width 59px;
height 51px;
top 129px;
left 226px;
}
.map_image1 {
display block;
width 800.1818182468414px;
height 50.18181824684143px;
position relative;
background-position 0 0;
background-repeat no-repeat;
}
.map_image1 .map_link1 {
display block;
position absolute;
text-indent -999em;
overflow hidden;
}
.map_image1 #map_link_4 {
width 64.36363649368286px;
height 39.36363649368286px;
top 3.90625px;
left 141.9033966064453px;
}
.map_image1 #map_link_5 {
width 95.36363649368286px;
height 36.36363649368286px;
top 7.897705078125px;
left 416.9033966064453px;
}
.map_image1 #map_link_6 {
width 81.36363649368286px;
height 37.36363649368286px;
top 9.90057373046875px;
left 226.9033966064453px;
}
.map_image1 #map_link_7 {
width 79.36363649368286px;
height 36.36363649368286px;
top 6.903411865234375px;
left 325.90907287597656px;
}
.map_image1 #map_link_8 {
width 111.36363649368286px;
height 36.36363649368286px;
top 0.909088134765625px;
left 524.9005279541016px;
}
#content {
}
#social {
bottom0;
positionfixed;
z-index150;
_positionabsolute;
_topexpression(eval(document.documentElement.scrollTop+ (document.documentElement.clientHeight-this.offsetHeight)));
width 800px;
height72px;
margin-bottom 20px;
text-align center;
}
.outline {
border 2px solid #80b78f;
box-shadow 3px 3px 5px rgba(0, 0, 0, 0.6);
-moz-box-shadow 3px 3px 5px rgba(0, 0, 0, 0.6);
-webkit-box-shadow 3px 3px 5px rgba(0, 0, 0, 0.6);
}
#sociallinks {
height 8-px;
margin-top 525px;
text-align center;
font-size 20px;
font-family Cooper Std Black;
letter-spacing 5px;
}
#logolinks2 {
text-align center;
}
#twitterfeed {
}
</style>
</head>
答案 0 :(得分:5)
您还应该附加body标签内的内容。 关于CSS,它不会工作,因为你遗漏了&#34;:&#34;例如,在很多地方,
border 2px solid #80b78f;
should be
border:2px solid #80b78f;
答案 1 :(得分:1)
第一个声明中有一个拼写错误
html, body {
height100%;
margin 0px;
padding 0px;
... }
应该是
html, body {
height: 100%;
margin:0px;
padding:0px;
}
其他地方也遗漏了很多:
,我建议添加这些冒号并再试一次。
答案 2 :(得分:1)
你应该把:在属性和价值之间;如果你看到你的css代码你永远不会使用它。 我修复它,请复制它并将其粘贴到您的html文件
<style type="text/css">
html, body {
height : 100%;
margin : 0px;
padding : 0px;
}
video#bgvid {
position : fixed; right : 0; bottom : 0;
min-width : 100%; min-height : 100%;
width : auto; height : auto; z-index : -100;
background : url(imgillamal.png) no-repeat;
background-size : cover;
}
#wrapper {
background-color : rgba(255, 255, 255, 0.7);
-webkit-box-shadow : 0px 0px 54px -7px rgba(0,0,0,0.75);
-moz-box-shadow : 0px 0px 54px -7px rgba(0,0,0,0.75);
box-shadow : 0px 0px 54px -7px rgba(0,0,0,0.75);
width : 800px;
height : 100%;
min-height : 100%;
margin : auto;
}
#header {
width : 800px;
height : 230px;
margin : auto;
padding-top : 2px;
}
.map_image { display : block; width : 800px; height : 230px; position : relative; background-position : 0 0; background-repeat : no-repeat; }
.map_image .map_link { display : block; position : absolute; text-indent : -999em; overflow : hidden; }
.map_image #map_link_0 { width : 133px; height : 131px; top : 50px; left : 92px; }
.map_image #map_link_1 { width : 156px; height : 112px; top : 58px; left : 536px; }
.map_image #map_link_2 { width : 54px; height : 46px; top : 54px; left : 34px; }
.map_image #map_link_3 { width : 59px; height : 51px; top : 129px; left : 226px; }
.map_image1 { display : block; width : 800.1818182468414px; height : 50.18181824684143px; position : relative; background-position : 0 0; background-repeat : no-repeat; }
.map_image1 .map_link1 { display : block; position : absolute; text-indent : -999em; overflow : hidden; }
.map_image1 #map_link_4 { width 64.36363649368286px; height : 39.36363649368286px; top 3.90625px; left 141.9033966064453px; }
.map_image1 #map_link_5 { width 95.36363649368286px; height : 36.36363649368286px; top : 7.897705078125px; left 416.9033966064453px; }
.map_image1 #map_link_6 { width : 81.36363649368286px; height : 37.36363649368286px; top : 9.90057373046875px; left 226.9033966064453px; }
.map_image1 #map_link_7 { width 79.36363649368286px; height : 36.36363649368286px; top : 6.903411865234375px; left 325.90907287597656px; }
.map_image1 #map_link_8 { width 111.36363649368286px; height 36.36363649368286px; top :0.909088134765625px; left 524.9005279541016px;}
#content {
}
#social {
bottom : 0;
position : fixed;
z-index150;
position: absolute;
width : 800px;
height : 72px;
margin-bottom : 20px;
text-align : center;
}
.outline {
border : 2px solid #80b78f;
box-shadow : 3px 3px 5px rgba(0,0,0,0.6);
-moz-box-shadow : 3px 3px 5px rgba(0,0,0,0.6);
-webkit-box-shadow : 3px 3px 5px rgba(0,0,0,0.6);
}
#sociallinks {
height : 8-px;
margin-top : 525px;
text-align : center;
font-size : 20px;
font-family : Cooper Std Black;
letter-spacing : 5px;
}
#logolinks2 {
text-align : center;
}
#twitterfeed {
}
</style>
最佳
答案 3 :(得分:0)
有很多错别字。确保你放入冒号和分号:
height: x;
不
heightx;
答案 4 :(得分:0)
你的代码中存在很多拼写错误,主要是你的CSS中缺少冒号。这是正确的CSS代码:
html, body {
height: 100%;
margin: 0px;
padding: 0px;
}
video#bgvid {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
z-index: -100;
background: url(imgillamal.png) no-repeat;
background-size: cover;
}
#wrapper {
background-color: rgba(255, 255, 255, 0.7);
-webkit-box-shadow: 0px 0px 54px -7px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 54px -7px rgba(0,0,0,0.75);
box-shadow: 0px 0px 54px -7px rgba(0,0,0,0.75);
width: 800px;
height: 100%;
min-height: 100%;
margin: auto;
}
#header {
width: 800px;
height: 230px;
margin: auto;
padding-top: 2px;
}
.map_image { display: block; width: 800px; height: 230px; position: relative; background-position: 0 0; background-repeat: no-repeat; }
.map_image .map_link { display: block; position: absolute; text-indent: -999em; overflow: hidden; }
.map_image #map_link_0 { width: 133px; height: 131px; top: 50px; left: 92px; }
.map_image #map_link_1 { width: 156px; height: 112px; top: 58px; left: 536px; }
.map_image #map_link_2 { width: 54px; height: 46px; top: 54px; left: 34px; }
.map_image #map_link_3 { width: 59px; height: 51px; top: 129px; left: 226px; }
.map_image1 { display: block; width: 800.1818182468414px; height: 50.18181824684143px; position: relative; background-position: 0 0; background-repeat: no-repeat; }
.map_image1 .map_link1 { display: block; position: absolute; text-indent: -999em; overflow: hidden; }
.map_image1 #map_link_4 { width 64.36363649368286px; height: 39.36363649368286px; top 3.90625px; left 141.9033966064453px; }
.map_image1 #map_link_5 { width 95.36363649368286px; height: 36.36363649368286px; top: 7.897705078125px; left 416.9033966064453px; }
.map_image1 #map_link_6 { width: 81.36363649368286px; height: 37.36363649368286px; top: 9.90057373046875px; left 226.9033966064453px; }
.map_image1 #map_link_7 { width 79.36363649368286px; height: 36.36363649368286px; top: 6.903411865234375px; left 325.90907287597656px; }
.map_image1 #map_link_8 { width 111.36363649368286px; height 36.36363649368286px; top :0.909088134765625px; left 524.9005279541016px;}
#social {
bottom: 0;
position: fixed;
z-index: 150;
position: absolute;
width: 800px;
height: 72px;
margin-bottom: 20px;
text-align: center;
}
.outline {
border: 2px solid #80b78f;
box-shadow: 3px 3px 5px rgba(0,0,0,0.6);
-moz-box-shadow: 3px 3px 5px rgba(0,0,0,0.6);
-webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.6);
}
#sociallinks {
height: 8-px;
margin-top: 525px;
text-align: center;
font-size: 20px;
font-family: "Cooper Std Black";
letter-spacing: 5px;
}
#logolinks2 { text-align: center; }
您无需将所有内容放在<style>
标记中 - 带有效CSS的.css
文件也能正常使用。