0

直接链接到问题:http ://s18.postimg.org/f55rkfl1l/issue.png

<div class="overall_content">
        <div class="content">
            <p>jessicaPhotography<br><img src="images/heart.png"></p>
            <div class="content_picture">   
                    <p class="main">
                    This is where the revolving images will appea
                    This is where the revolving images will appea
                    This is where the revolving images will appea
                    This is where the revolving images will appea
                    This is where the revolving images will appea
                    </p> 
            </div>
        </div>
    </div>

有人可以帮我理解为什么我不能让我的内容 div 用段落标签中的文本进行扩展。这是我的CSS:

html, body, header, p, h1, h2, h3, h4, h5, h6, img, .content {
padding: 0px;
margin: 0px;
}

html {
background: url('images/background_gradient.png') repeat;
}

header {
width: 100%;
height: 30px;
background: rgb(0,0,0);
}

.overall_content {
width: 84%;
height: 100%;
background: rgb(255,255,255);
margin: 0px auto;
margin-top: .5%;
position: relative;
}

.content {
width: 98%;
height: 98%;
background: rgb(0,0,0);
position: absolute;
top: 1%;
left: 1%;
}

附加信息

.content_picture {
height: 100%;
width: 100%;
}

/********************************/
/* Intrinsic Content Properties */
/********************************/

.content p.main {
color: rgb(255,255,255);
font-family: Verdana, Arial;
font-size: 18px;
padding: 25px;

}
4

2 回答 2

1

问题是您设置了固定的宽度和高度。.content每次都会有 的 98% 的大小.overall-content,与其内容无关。当您将高度设置为自动时,应该可以解决您的问题。

于 2013-04-05T15:16:06.990 回答
0

删除height限制,然后如果添加一些文本,则 div 会变小或变高(适应您的内容...;)

于 2013-04-05T15:21:17.607 回答