0

多谢你们。它解决了。不要回答。

jsfiddle.net/GMLGn/5/

我仍然不明白它是如何工作的......

无论我尝试多少,黑色边框 div 都不会向右浮动并进入红色边框(除了左侧的绿色边框)。

简而言之,我想要绿色和黑色并排的 jsfiddle.net/GMLGn/ 任何想法?

代码太长,无法在此处发布(堆栈字符限制),并且在当前场景中提供部分代码是不可行的。

4

3 回答 3

0

绿色边框在周围,#frontpage-image.gallery块不在其中。因此,不会将另一个块放入其中是有道理的。

于 2013-01-03T14:03:27.807 回答
0

试试这个:

.w1{
    margin:0 auto;
    width:1000px;
    padding:0 0 274px;
    /*NEW*/
    position:relative;
}
.gallery{
    width: 290px;
    min-height: 410px;
    padding: 20px 16px 6px 29px;
    line-height: 17px;
    color: #454444;
    background: url(../images/bg-gallery.png) no-repeat;
    border: thick solid rgb(0,0,0);
    /*NEW*/
    position:absolute;
    top:165px;
    right:0;   
}

测试:http: //jsfiddle.net/GMLGn/4/

于 2013-01-03T14:14:59.590 回答
0

#frontpage-image.

float: left;
width: 64%;
于 2013-01-03T14:15:06.710 回答