HTML
<body>
<div class="left"></div>
<div class="right"></div>
</body>
CSS
body{
height:100%
}
.left{
float:left;
background-color:#ccffcc;
height:100%;
width:50%;
}
.right{
height:100%;
width:50%;
float:right;
background-color:#ffcc99
}
我已经设置了父元素的高度
看到我的两个div,我该怎么做?
它似乎只在我使用像素时才起作用,但我不喜欢使用像素......
答案 0 :(得分:1)
答案 1 :(得分:1)
答案 2 :(得分:0)
答案 3 :(得分:0)
<html>
<head>
<title>Test HTML</title>
</head>
<body>
<div class="left"></div>
<div class="right"></div>
</body>
<html>
<style>
body,html{
height:100%
}
.left
{
float:left;
background-color:#ccffcc;
height:100%;
width:50%;
}
.right
{
height:100%;
width:50%;
float:right;
background-color:#ffcc99
}
</style>
希望这有助于:)
答案 4 :(得分:0)
<html>
<body>
<div class="left"></div>
<div class="right"></div>
</body>
<style>
body{
`height:100%
}
.left
{
float:left;
background-color:#ccffcc;
height:100%;
width:50%;
}
.right
{
height:100%;
width:50%;
float:right;
background-color:#ffcc99
}
</style>
</html>
答案 5 :(得分:0)
如果您在此CSS中有任何问题。你也可以使用内联css <body style="height:100%">
因为可能是它的css冲突问题。
<body style="height:100%">
<div class="left"></div>
<div class="right"></div>
</body>
<style>
html{
height:100%;
}
.left
{
float:left;
background-color:#ccffcc;
height:100%;
width:50%;
}
.right
{
height:100%;
width:50%;
float:right;
background-color:#ffcc99
}
</style>
更新了Fiddle