2

我正在开发网站的移动版本。在某个页面上,左侧有三个图像,当您单击它时,您会在右侧看到大图像。

当您调整窗口大小时,左侧的三个图像的分辨率会变大。我想要完成的是右侧的图像应该与左侧的三个图像具有相同的高度。

因此,当您调整窗口大小时,蓝色和绿色 div 应该具有相同的高度。

你可以在这里或下面找到我的代码

<div id="outer">
    <div id="inner1">
        <ul>
            <li>
                <img style="-webkit-user-select: none" src="http://placekitten.com/50/50" />
            </li>
            <li>
                 <img style="-webkit-user-select: none" src="http://placekitten.com/50/50" />
            </li>
            <li>
                  <img style="-webkit-user-select: none" src="http://placekitten.com/50/50" />
            </li>
        </ul>
    </div>
    <div id="inner2">
        <img style="-webkit-user-select: none" src="http://placekitten.com/50/50" />
    </div>
    <div style="clear: both;"></div>
</div>

风格

#outer{
    border: 1px solid red;
    width: 100%;
}

#inner1{
    border: 1px solid blue;
    width: 30%;
    float: left;
    margin-right: 20px;
}

#inner1 img{
    width: 100%;
}

#inner2{
    border: 1px solid green;
    width: 100%;
    height: 100%
}

ul{
    list-style-type: none;  
}

谢谢!!

4

1 回答 1

1

这是一个经过测试的工作小提琴 IE10、IE9、IE8、IE7、FF、Chrome、Safari

仅供参考:我还修复了您在 inner1 div 图像中遇到的 100% 宽度问题。(这是由 ul-li 默认边距引起的)

HTML:(删除了你的clear:both;div)

<div id="outer">
    <div id="inner1">
        <ul>
            <li>
                <img src="http://placekitten.com/50/50" />
            </li>
            <li>
                <img src="http://placekitten.com/50/50" />
            </li>
            <li>
                <img src="http://placekitten.com/50/50" />
            </li>
        </ul>
    </div>
    <div id="inner2">
        <img src="http://placekitten.com/50/50" />
    </div>
</div>

CSS:

* {
    padding: 0;
    margin: 0;
}
#outer {
    border: 1px solid red;
    position: relative; /* new */
}
#inner1 {
    width: 30%;
    border: 1px solid blue;
    display: inline-block; /*instead of the floating*/
}
ul {
    list-style-type: none;
}
#inner1 img {
    width: 100%;
}
#inner2 {
    border: 1px solid green;
    width: 60%;
    position: absolute;
    top: 0; /* stretchs from the beginning of the parent .. */
    bottom: 0; /* ..to the end. */
    right: 0; /*instead of float:right */
}
于 2013-09-19T18:32:46.060 回答