- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试显示两个 div,一个在左边(输入),一个在右边(右),它们之间有一个按钮(这是一个 asp.net web 元素),但即使我尝试 float:left 和 right或剩余边距:%,我做不到。这是我的 css 文件;
.input{
background-color:rgba(23, 23, 23, 0.71);
border: 2px solid grey;
width: 450px;
height: 550px;
float: left;
margin-left:0px;
border-radius: 25px;
padding: 10px;
}
.roundcorner //this class is for button
{
border:2px solid #a1a1a1;
text-align: center;
font-size:18px;
margin-left:45%;
margin-top:35px;
font-style:oblique;
background:#a1a1a1;
width:70px;
border-radius:25px;
-moz-border-radius:35px; /* Firefox 3.6 and earlier */
}
.output{
background-color:rgba(23, 23, 23, 0.71);
border: 2px solid grey;
width: 270px;
height: 550px;
margin-left: 65%;
margin-right:15px;
border-radius: 25px;
padding: 10px;
}
最佳答案
见下文...
.container{
width:100%;
font-family:arial;
}
.box{
padding-top:60px;
width:33%;
height:100px;
text-align:center;
display:inline-block;
zoom:1;
*display:inline;
}
.box.left{
float:left;
background-color:#ddd;
}
.box.right{
float:right;
background-color:#ddd;
}
<div class="container">
<div class="box left">Left div</div>
<div class="box">
<button>I'm a button</button>
</div>
<div class="box right">Right div</div>
</div>
关于css - 如何在两个div和button之间显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34456259/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!