3

我有一个包含三个图像的导航 div。每个图像都有一个绝对位于图片底部的标题元素。我试图在同一行上显示所有三个彼此相邻的图像,但图片显示为块。

HTML:

<div class = "nav">
    <div class = "container">

        <div class = "image">
            <img src = "img1"> 
        </div>
        <div class = "title">
            <p> text1 </p>
        </div>

    </div>

     <div class = "container">

        <div class = "image">
            <img src = "img2"> 
        </div>
        <div class = "title">
            <p> text2 </p>
        </div>

    </div>

     <div class = "container">

        <div class = "image">
            <img src = "img3"> 
        </div>
        <div class = "title">
            <p> text3 </p>
        </div>

    </div>
</div> 

CSS:

.nav {
    display: inline;
}

.container {
    position: relative;
    width: 100%;
}

.image img {
    width: 30%;
    height: 4.5in;
}

.title {
    width: 30%;
    position: absolute;
    bottom: 0; left: 0;
}
4

2 回答 2

8

您需要先修复您的 HTML 代码。

它是<div class = "title">而不是<div class = "title>缺少每个标题末尾的“。

然后将浮动添加到您的容器中并放置 30% 的宽度。因为您希望您的图像宽度正确为 30%。

.container {
    float:left;
    position: relative;
    width: 30%;
}

当您放置 3 个时间容器时,您要求 100% X 3 对齐,

还在你的 CSS 中创建一个带有 float 的图像类。

.image{
    float:left;
}

最后,将 CSS 中 .image img 的宽度更改为 100%,这样它将占据允许的 30% 容器的 100% 位置。

    .image img {
    width: 100%;
    height: 4.5in;
    }
于 2012-09-12T19:54:32.253 回答
4

您的图像已经设置为内联,麻烦的是,它们的父级不是。你需要这个:

container { display: inline-block }

值得注意的是,您有一些您可能并不真正需要的标记

    <div class = "title>
        <p> text3 </p>
    </div>

可以用这个代替:

    <h1 class="title">text3</h1>

或这个:

.container h1 {
    width: 30%;
    position: absolute;
    bottom: 0; left: 0;
}

-剪辑-

    <h1>text3</h1>
于 2012-09-12T19:34:11.243 回答