css – 如何使用IONIC框架在中心或右对齐按钮?

前端之家收集整理的这篇文章主要介绍了css – 如何使用IONIC框架在中心或右对齐按钮?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在右边的登录注册按钮,搜索按钮在中心,我搜索很多,但没有得到任何解决方案。

还有我如何对齐文本区域在适当的位置。

这里是我的HTML代码

<body ng-app="starter">

    <ion-pane  style = "background-color:#4992E2;">
      <ion-header-bar class="bar bar-subheader" style = " margin-top: -35px; background-color:#F9F9F9;">
        <h1 class="title" style = "color:black;">NetHealth Appointment Booking</h1>
      </ion-header-bar>
      <ion-content >
          <div class = "row center">
               <div class="col">
                    <button class="button button-small  button-light" >
                      Login!
                    </button>
                     <button class="button button-small  button-light">
                      Register Here!
                    </button>
                </div>
          </div>
          <div class="item-input-inset">
            <h4>Date</h4> 

          <label class="item-input-wrapper">
                <input type="text" placeholder="Text Area">
          </label>
        </div>
        <div class="item-input-inset">
            <h4>Suburb</h4>

          <label class="item-input-wrapper">
                <input type="text" placeholder="Text Area">
          </label>
        </div>
        <div class="item-input-inset">
            <h4>Clinic</h4>
          <label class="item-input-wrapper">
                <input type="text" placeholder="Text Area">
          </label>
        </div>
        <button class=" center button button-small  button-light">
          Search
        </button>

        </ion-content>
    </ion-pane>
  </body>

我知道在bootstrap,但我是新的离子,请告诉我怎么能这样做。

解决方法

Css将以相同的方式工作,我假设。

您可以使用以下内容来定位内容

.center{
     text-align:center;
}

更新

要以适当的方式调整宽度,请修改DOM,如下所示:

<div class="item-input-inset">
    <label class="item-input-wrapper"> Date
        <input type="text" placeholder="Text Area" />
    </label>
</div>
<div class="item-input-inset">
    <label class="item-input-wrapper"> Suburb
        <input type="text" placeholder="Text Area" />
    </label>
</div>

CSS

label {
    display:inline-block;
    border:1px solid red;
    width:100%;
    font-weight:bold;
}

input{
    float:right; /* shift to right for alignment*/
    width:80% /* set a width,you can use max-width to limit this as well*/
}

Demo

最后更新

如果你不打算修改现有的HTML(一个在你的问题最初),下面css会让我最好的朋友! 原文链接:https://www.f2er.com/css/221076.html

猜你在找的CSS相关文章