html中怎么将标签左对齐,而文本框右对齐的方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html中怎么将标签左对齐,而文本框右对齐的方法相关的知识,希望对你有一定的参考价值。
参考技术A 设置其对齐样式将标签设置为左对齐,文本框设置为右对齐。如:<label class="la"></label>
<input type="text" class="textBox"/>
css:
.latext-align:left;
.textBoxtext-align:right;
text-align是文本对齐样式,有三个取值,分别是:left、center、right。
app页面用css 的direction 属性解决select 下拉框右对齐
direction 属性规定文本的方向 / 书写方向。
select标签
<div class="mui-input-row mir"> <label style="margin-left: 5px;">部门</label> <select dir="rtl" id="dept" style="width:50%; height: 30px;"> </select> </div>
select的样式
#dept{
direction: rtl;
}
#dept option{
direction: ltr;
}
以上是关于html中怎么将标签左对齐,而文本框右对齐的方法的主要内容,如果未能解决你的问题,请参考以下文章