本文介绍了在形式上mailchimp中心输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在跟我的中心输入[类型=提交]的一个问题。我使用的是引导在我的网站也。我尝试过很多方法,但似乎没有任何工作。是否有人可以帮助我?
.centerButton {
最大宽度:700像素;
文本对齐:中心;
位置:亲属;
}
.btnsubmit {
边界半径:5像素;
高度:60PX;
颜色:白色;
背景颜色:#60C3AD;
边界:无;
字体家庭:宋体,无衬线;
字体重量:轻;
字体大小:16像素;
文本对齐:中心;
光标:指针;
保证金底:15px的;
}
解决方案
请与下面的链接,你有一个按钮在中间,就像你想要的。
< DIV ID ='工具栏'>
< DIV CLASS ='文本中心'>
< DIV CLASS =BTN>
<输入类型=按钮级=BTN BTN-默认/>
< / DIV>
< / DIV>
I'm having a problem with centering my input[type="submit"].I'm using bootstrap on my website also.I tried many ways but nothing seems to work. Can someone please help me with this?
.centerButton{
max-width: 700px;
text-align: center;
position: relative;
}
.btnsubmit{
border-radius: 5px;
height: 60px;
color: white;
background-color: #60C3AD;
border: none;
font-family: 'Arial', sans-serif;
font-weight: lighter;
font-size: 16px;
text-align: center;
cursor: pointer;
margin-bottom: 15px;
}
解决方案
Check with the below link you have a button at center just as you want.
<div id='toolbar'>
<div class='text-center'>
<div class="btn">
<input type="button" class="btn btn-default"/>
</div>
</div>
这篇关于在形式上mailchimp中心输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!