在这里,边距 - 左/右无效。这与宽度有关吗?它将成为一个左右列的网页,仍然需要在中间添加一条线。
.wrap {
width: 100%;
overflow: scroll;
}
.fleft {
float:left;
width: 50%;
background:white;
height: 1000px;
margin-left: 6cm;
}
.fright {
float: right;
background:white;
height: 1000px;
width: 50%;
margin-right: 6cm;
}
也不起作用
.wrap {
width: 100%;
overflow: auto
margin: 0 0 10px 10px;
}
.fleft {
float:left;
width: 50%;
background:white;
height: 1000px;
}
.fright {
float: right;
background:white;
height: 1000px;
width: 50%;
}
答案 0 :(得分:0)
答案 1 :(得分:0)
css属性值声明中没有空格像这样margin-left: 6 cm;
。
worng宣言规则。
margin-left: 6 cm;
更正sysntax:
margin-left: 6cm;