答案 0 :(得分:0)
可能最好的方法是在内部div上使用margin-left属性,以便给出向右浮动的错觉。
答案 1 :(得分:0)
如果我理解正确,这就是你能做的。 编辑:转到底部进行新修改!
你的父div(id =“parent”) 儿童div(id =“孩子”)
你需要CSS和HTML才能做到这一点。
<div id="parent">
<div id="child">
<!-- Whatever goes in your div -->
</div>
<div id="child2">
<!-- Whatever goes in your div -->
</div>
</div>
/* this will use the ID of the div, to use a class its .parent and you need to set the class parameter of the div. */
#parent {
width: 1000px;
height: 500px;
background-color: #333 /* Grey */
}
#child {
width: 450px;
height: 500px;
float: right;
background-color: #2e00ff /* Blue */;
}
#child2 {
width: 450px;
height: 500px;
float: left;
background-color: #ff0000 /* Red */;
}
<div id="parent">
<div id="child">
<!-- Whatever goes in your div -->
</div>
<div id="child2">
<!-- Whatever goes in your div -->
</div>
</div>
希望这有帮助! -InvincibleM
编辑:您应该可以在div元素中放置任何填充符,例如按钮。
答案 2 :(得分:0)
这可能适合你
<div class="flex">
<div class="other-items">
may be large chunks ..
</div>
<div class="right"> <!-- separate the element and give position -->
right
</div>
</div>
.flex {
display: flex;
position: relative;
}
.other-items {
width: 98%;
/*padding-right: 15px;*/
}
.right {
position: absolute;
right: 10px;
top: 0px;
}
答案 3 :(得分:0)
您可以使用以下css方法来获取它
在按钮parent
div中使用一个parent
div,使用float:right
按住父div并使用display:inline-block
以单行对齐。
.box {
width: 100%;
border: 2px solid;
padding: 10px;
}
.buttonGroup {
display: inline-block;
float: right;
margin-top: 5px;
}
.dashboard {
border: 2px solid;
padding: 4px;
display: inline-block;
text-align: right;
}
.refresh {
border: 2px solid;
display: inline-block;
margin-right: 10px;
}
.setting {
border: 2px solid;
display: inline-block;
}
&#13;
<div class="box">
<div class="dashboard">Dashboard</div>
<div class="buttonGroup">
<div class="refresh">refresh</div>
<div class="setting">Setting</div>
</div>
</div>
&#13;
答案 4 :(得分:0)
试试这个:
.parent {
overflow:hidden;
background: orange;
}
.child1 {
height: 200px;
width: auto;
background: red;
float: left;
}
.child2 {
height: 200px;
width: auto;
background: blue;
float: right;
}
&#13;
<div class="parent">
<div class="child1">Child1</div>
<div class="child2">Child2</div>
</div>
&#13;