试图将表格放在 div 的顶部
Trying to place a form at the top of a div
我在页面底部放置了一个小框。我试图将表格放在 div 的正上方,但表格不断跳入 bootstrap div.
这是 html 尝试
编辑:
我还希望表格中的行具有与面包屑相同的背景颜色,但它没有显示
<div style="padding:1px; background-color: #F2F2F2;">
<form class="rightiest" method="post" action="/logout">
<input class="btn btn-link" type="submit" value="Leave Group"/>
</form>
</div>
<div class="breadcrumb">
<div class="wrap">
<div class="container" style="text-align: center;font-size: 80%;">
<strong> Please hold we will soon attend to you shortly</strong>
</div>
</div>
</div>
这是css控制表单
form.rightiest {float:right; margin-top:0px; margin-bottom:7px;}
同上,表格一直重叠到div。请问如何将表格放在 div.
的正上方
您需要清除浮动。
.breadcrumb {
clear: both;
}
清除浮动。
form.rightiest {float:right;
margin-top:0px;
margin-bottom:7px;}
.breadcrumb {
clear: both;
}
<form class="rightiest" method="post" action="/logout">
<input class="btn btn-link" type="submit" value="Leave Chat"/>
</form>
<div class="breadcrumb">
<div class="wrap">
<div class="container" style="text-align: center;font-size: 80%;">
<strong> Please hold we will soon attend to you shortly</strong>
</div>
</div>
</div>
我在页面底部放置了一个小框。我试图将表格放在 div 的正上方,但表格不断跳入 bootstrap div.
这是 html 尝试 编辑: 我还希望表格中的行具有与面包屑相同的背景颜色,但它没有显示
<div style="padding:1px; background-color: #F2F2F2;">
<form class="rightiest" method="post" action="/logout">
<input class="btn btn-link" type="submit" value="Leave Group"/>
</form>
</div>
<div class="breadcrumb">
<div class="wrap">
<div class="container" style="text-align: center;font-size: 80%;">
<strong> Please hold we will soon attend to you shortly</strong>
</div>
</div>
</div>
这是css控制表单
form.rightiest {float:right; margin-top:0px; margin-bottom:7px;}
同上,表格一直重叠到div。请问如何将表格放在 div.
的正上方您需要清除浮动。
.breadcrumb {
clear: both;
}
清除浮动。
form.rightiest {float:right;
margin-top:0px;
margin-bottom:7px;}
.breadcrumb {
clear: both;
}
<form class="rightiest" method="post" action="/logout">
<input class="btn btn-link" type="submit" value="Leave Chat"/>
</form>
<div class="breadcrumb">
<div class="wrap">
<div class="container" style="text-align: center;font-size: 80%;">
<strong> Please hold we will soon attend to you shortly</strong>
</div>
</div>
</div>