销毁自动完成的中心表格(Bootstrap Tokenfield)

Center Form with Destroying Auto complete (Bootstrap Tokenfield)

如何在不使自动完成建议也居中的情况下使来自 bootstrap 令牌字段的表单居中?

例如:

http://jsfiddle.net/H7u63/34/

到目前为止,我已经试过了

#test {
    text-align: center;
}

.form-horizontal { 
   margin: 0 auto;
   width:800px;
}

但是,正如您在示例中看到的那样,所有结果也都居中并且这种行为不是最佳的。我也试过设置 margin-leftmargin-right 自动,但这似乎不会导致表格居中。

将以下内容添加到您的 CSS:

.tokenfield {
    text-align: left;
}