0

谁能帮我完成这个简单的,据说很容易的 css 任务?我正在尝试设置一个 div 高度来调整窗口大小。这是我到目前为止所拥有的:

div.signIn {
margin: 20px 20px 10px 40px;
border-style: ridge;
border-color: #006a89;
min-height: 450px;
height: 90%;
width: 26%;
min-width: 255px;
padding: 10px 20px 10px 20px;
line-height: 210%;
float: left;
}

宽度工作正常,但不是高度。没有其他样式在 div 上工作。谁能发现为什么?

4

1 回答 1

1

尝试设置htmlbody height

jsFiddle

html,
body {
    height:100%;
}
于 2013-04-06T05:00:20.603 回答