我在一行中有兩個HTML元素。 Whoch應顯示是這樣的: 如何使兩個HTML元素在單行中對齊?
對於我做了兩個元素顯示內聯,也是我浴液左,右分別。但他們顯示的是這樣的:
你可以看到他們沒有正確對齊。
.selected-account{
display: inline;
float: right;
color: #0679ca;
}
.select-account-accordion{
display: inline;
float: left;
color: #0679ca;
}
<div id="select-account" class="col-sm-12 col-md-12 disabled-billing-accordion">
<h3 id="select-acct" class="select-account-accordion">Select Account(s)</h3>
<span id="account-selected" class="selected-account">0 of 8 account selected</span>
</div>
能否請您提出這個?
編輯:我覺得因爲我把這兩個元素放在我爲創建手風琴而設置的div類中,所以這就是爲什麼它會產生麻煩。請參閱下面的風格這是上課「殘疾帳單手風琴」
.disabled-billing-accordion h3::before{
background: url("/static/img/accordion.png") no-repeat scroll 0 0
rgba(0, 0, 0, 0);
background-position: -1px -97px;
content: " ";
width: 34px;
height: 34px;
left: 0;
position: absolute;
top: 25px;
margin-left: 1em
}
.disabled-billing-accordion h3{
padding: .2em 0 0 3em;
color: #0679ca;
font-size: 1.5em;
line-height: 2.1875em;
margin-bottom: 8px;
font-weight: 100 !important
}
.disabled-billing-accordion{
padding: 10px;
border-bottom: 1px solid #bdbdbd
}
它沒有爲我工作..可能是因爲我已經把這些都在一個div類有「禁用計費手風琴」的元素。這個班負責顯示手風琴。 –
請參閱編輯 –