1

なぜ<div id = "container">高さが433pxなのですか?私はこのページをhttp://www.elektroninescigaretes.ym.lt/にします。要素を挿入すると、divには433pxしかなく、フッターで作成したいので、divが必要です。上部だけでなく全ページの高さ。

//index file
<?php include ("template/header.php"); ?>
<div id = "home_content"></div>
<?php include ("template/footer.php"); ?>


//header file

<!DOCTYPE html>
<html>
<head>
<link rel = "stylesheet" href = "media/styles/style.css" media = "screen">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>el Cigarai</title>
</head>
<body class = "<?php 
$remove = array(".php", "/");
$url = $_SERVER['SCRIPT_NAME'];
$current_file = str_replace($remove, "", $url);
 $current_page = explode('_', $current_file);
 echo $current_page[0];
?>">

<div id = "container">

//footer file

</div>
</body>
</html>

  /style file

#container{
position: relative;
margin: 0 auto;
width: 960px;
height: 100%;
}
#home_content{
position: absolute;
top: 294px;
right: 60px;
width: 960px;
height: 750px;
background-image: url('../images/woman.jpg');
background-repeat: no-repeat;
overflow: hidden;
}
4

2 に答える 2

0

これをあなたのスタイルに入れてください:

html body{height: 100%;}
于 2013-01-08T15:29:48.353 に答える
0

高さは100%に設定されています。つまり、コンテンツがビューポート(または親コンテナ)で表される100%より大きくなると、コンテンツは大きくなりません。使ってみてください

min-height:100%
于 2013-01-08T15:35:25.993 に答える