0

我一直在为我的一个朋友的网站做一个 CSS 布局,可能遇到了一些问题。希望你能帮助我。

我有一个带有正文和内容博客 div 的 html。除了内容博客 div 之外,一切似乎都运行良好。使用下面给定的设置,html 输出只返回高度为 0 的内容博客 div。但是,只有当我固定高度时,它才能在页面上正常显示。

我的问题是为什么在这种情况下它总是需要我为 div 设置一个固定的高度。对 CSS 规范有任何参考吗?这也是在这里创建的小提琴:http: //jsfiddle.net/benmore/yZL4U/1/ 虽然我的预期输出在这里:http: //jsfiddle.net/benmore/yZL4U/2/

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />

        <style type="text/css">

            body{
                width: 960px;
                margin-left:auto;
                margin-right:auto ;
                margin-top: 0px;
                background:#5d9ab2 url(https://lh5.googleusercontent.com/-ZBLYo1oD6bM/UHox3oBICxI/AAAAAAAAAgo/yCg6TcxLeC4/s358/img_tree.png) no-repeat top left;
                background-position: 200px 0px;
                height: 100%;
            }


            .content_blog{
                background: url(https://lh4.googleusercontent.com/-6vbAw73oSYI/UHqHD-7GLlI/AAAAAAAAAg8/3eDurdBo2wE/s191/blog_topic.jpg) top left no-repeat;
                width: 920px;
                margin: 0px 20px 0px 20px;
                /*-- height: 200px; --*/
            }


        </style>
        <title></title>
    </head>
    <body class="homepage">
        <div class="content_blog"></div>
    </body>
</html>
4

2 回答 2

1

设置 .content-blog div 的最小高度,如下所示http://jsfiddle.net/calder12/yZL4U/4/原因是 div 实际上没有内容。浏览器不会将背景图像视为内容,因此它假定 div 为空并将其呈现为 0 高度。

于 2012-10-14T09:55:57.440 回答
0

您使用 yhis 代码而不是高度

.content_blog{
            background: url(https://lh4.googleusercontent.com/-6vbAw73oSYI/UHqHD-7GLlI/AAAAAAAAAg8/3eDurdBo2wE/s191/blog_topic.jpg) top left no-repeat;
            width: 920px;
            margin: 0px 20px 0px 20px;
            min-height:500px;
        }

min-height 用于动态高度最好的问候

于 2012-10-14T09:54:53.413 回答