@charset "utf-8";
#wrapper {
position: absolute;
overflow-y: scroll;
max-width: 1414px !important;
min-height: 100%;
max-height: 100%;
}
它汇编了许多错误
body
clearfix()
text-align center
background url('./bgh1.jpg') no-repeat center center fixed
background-size(cover)
#gallery
margin-left 6%
width 88%
display block
margin-left auto
margin-right auto
height 500px
background black
#line1
width 980px
height 345px
background #ffffff
#col1
width 500px
height 500px
border 2px solid black
img
max-width 100%
max-height 100%
此命令我一直用于编译
#gallery {
margin-left: 6%;
width: 88%;
}
#gallery display block {
margin-left: auto;
}
#gallery margin-right auto {
height: 500px;
background: #000;
}
#gallery margin-right auto #line1 width 980px {
height: 345px;
background: #fff;
}
#gallery margin-right auto #line1 #col1 {
width: 500px;
height: 500px;
border: 2px solid #000;
}
#gallery margin-right auto #line1 #col1 img {
max-width: 100%;
max-height: 100%;
}
答案 0 :(得分:1)
空白是重要的[...]
您正在混合空格和制表符(即使在相同的行上)。即使在编辑器中看起来没问题,当空白 显着时,这可能会导致问题。因此,您应该将编辑器配置为使用单个空格替换选项卡以避免该问题。