Angular / Ionic:如何对齐文本区域?

时间:2016-11-28 21:39:59

标签: html angularjs ionic-framework

Angular 1 / Ionic 1单页应用。

我希望textarea与其他输入垂直对齐,位于每个字段标签的右侧。我尝试过而不是,它有所不同,但不是更好。

请你有个主意吗?非常感谢!

screenshot

  <ion-content >
    <div class="list">
        <label class="item item-input">
            <span class="input-label">Name</span>
            <input type="text" placeholder="Smith" ng-model="entity.lastname">
        </label>
        <label class="item item-input">
            <span class="input-label">Email</span>
            <input type="email" placeholder="john.smith@google.com" ng-model="entity.email">
        </label>
        <label class="item item-input">
            <span>Comments</span>
            <textarea placeholder="Free text" ng-model="entity.comments"></textarea>
        </label>
    </div>
  </ion-content>

1 个答案:

答案 0 :(得分:0)

我可以通过将http://localhost:8890/sparql添加到class="input-label"标记来解决此问题,就像其他标记一样。