如何在右侧显示多个按钮?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在右侧显示多个按钮?相关的知识,希望对你有一定的参考价值。
我不知道为什么我的代码没有在右侧显示多个按钮。
这里是
.btn1 {
background-color: #yellow;
color: white;
margin-right: 1px;
float: right;
border: none;
}
.test {
position: relative;
display: flex;
margin-right: 1px;
background-color: blue;
}
<!DOCTYPE html>
<html>
<body>
<div class="test">
<button class="btn1">Info</button>
<div> write something here </div>
<button class="btn1">Info 2</button>
<div> write something here </div>
</div>
</body>
</html>
预期结果。假设下面是屏幕
----------------------------------- |
|Info| |Info 2|
----------------------------------- |
答案
为什么不先在div中插入html,然后再输入
<div class="test">
<div> write something here </div>
<div> write something here </div>
<button class="btn1">Info</button>
<button class="btn1">Info 2</button>
</div>
另一答案
您的意思是这样的吗?您还不清楚write something here
文本在哪里。但是,这需要2个按钮,并将它们与条形图的右侧对齐。
.btn1 {
background-color: #yellow;
color: white;
margin-right:1px;
border: 0px;
outline: none;
}
.test {
position: relative;
display: block;
background-color:blue;
text-align: right;
}
<div class="test">
<button class="btn1">Info</button>
<button class="btn1">Info 2</button>
</div>
<div> write something here </div>
<div> write something here </div>
以上是关于如何在右侧显示多个按钮?的主要内容,如果未能解决你的问题,请参考以下文章