use*_*776 5 twitter-bootstrap angularjs ionic-framework ionic
我正在使用 AngularJS 和 Ionic。
我有一个电子邮件输入字段:
<input type="password" placeholder="Password" ng-model="data.password">
Run Code Online (Sandbox Code Playgroud)
我想将文本居中的位置。我都尝试过:
<input type="password" placeholder="Password" ng-model="data.password" class="align-center">
<input type="password" placeholder="Password" ng-model="data.password" class="center">
Run Code Online (Sandbox Code Playgroud)
但两种尝试都没有效果。
从字面上看,您所需要的只是text-align:center通过 CSS 类或内联样式将 a 添加到输入字段。我们无法看到您尝试使用的类包含哪种 CSS,因此我们无法真正知道为什么它们不适合您。:(
小提琴:
http://jsfiddle.net/HB7LU/20067/