如何使 jqWidgets 表单具有水平对齐?我尝试的是:
<style>
input {
display: inline-block;
}
那一个呢:http: //jsfiddle.net/dbZJL/
$('#testForm').jqxValidator({
rules: [
{
input: '#userInput',
message: 'Username is required!',
action: 'blur',
rule: 'required'
},
{
input: '#emailInput',
message: 'Invalid e-mail!',
action: 'blur',
rule: 'email'
}],
});
$("#jqxbutton").jqxButton({
theme: 'energyblue',
width: 100,
height: 30
});
$("#jqxbutton").click(function () {
$('#testForm').jqxValidator('validate');
});
<form id="testForm" action="./">Username:
<input type="text" id="userInput" class="text-input" />E-mail:
<input type="text" id="emailInput" class="text-input" />
<input type="button" style="" id="jqxbutton" value="Submit" />
</form>
通过应用 CSS 边距,您可以更改表单的对齐方式。要更改表单内容的对齐方式,您可以放置 padding-left 或 padding-right。示例:http: //jsfiddle.net/t76Jc/
你可以用不同的方式对齐它
我希望这样的事情可以帮助你:
input {
display: block;
width: 100px;
margin: 0px auto;
}
或者您可以将其放入<center>
标签中:
<center>
<form>
<input type="text" />
</form>
</center>