将一个向右浮动的元素包裹在另一个元素下面

Wrap one right-floated element underneath another

我正在尝试像这样将 2 个 div 放在彼此下面:

div 1
div 2

这是我在 HTML 文件中取得的进展:

<div width="100%" z-index:"1">
            <div id="username-full">

                <div id="username-form">
                    <input type="text" name="username" id="username-input" placeholder="Username" />
                </div>

                <div id="username-text">
                    <p>Username:</p>
                </div>
            </div>
        </div>


        <div width="100%" z-index:"1">

            <div id="passwd-full">

                <div id="passwd-form">
                    <input type="text" name="passwd" id="passwd-input" placeholder="passwd" />
                </div>

                <div id="passwd-text">
                    <p>Password:</p>
                </div>

            </div>

        </div>

这是我的 CSS-文件:

#username-full{
    text-align:right;
    float:right;
    clear:right;
}
#username-text{
    float:right;
    margin-right:5px;
}
#username-form{
    float:right;
    margin-top:13px;
}

#passwd-full{
    text-align:right;
    float:right;

}
#passwd-text{
    float:right;
    margin-right:5px;
}
#passwd-form{
    float:right;
    margin-top:13px;
}

Fiddle

如您所见,我试过使用 z-index,我试过将 2 个 div 的宽度设置为 100%,我试过使用 float。另外,我试过使用定位,但也没有用。我猜不出:(.

您好, 卢克

根据您的代码,尝试添加以下行:

#passwd-full{
    clear: both;
}

我猜的,但看看这个:

#passwd-full {
    ...
    clear: right;
}

Demo

如果你想要两个 100% 的 div,一个在另一个之上,你应该尝试:

<div id="One">My first content</div>
<div id="Two">My second content</div>

#One, #Two {width: 100%; clear: both;}