我想在右边的登录和注册按钮,搜索按钮在中心,我搜索很多,但没有得到任何解决方案。
还有我如何对齐文本区域在适当的位置。
这里是我的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*/ }
最后更新
如果你不打算修改现有的HTML(一个在你的问题最初),下面css会让我最好的朋友! 原文链接:https://www.f2er.com/css/221076.html