我想創建一個行會兩個div之間之間走線。不幸的是,我不能讓線在兩個div之間垂直對齊。上面的圖片是我目前正在獲取的圖片。下面是html。
.line {
vertical-align: middle;
margin-left: 120px;
margin-right: 200px;
border: 2px solid red;
}
section {
width: 100%;
margin: auto;
}
.home {
width: 20%;
margin-left: 50px;
float: left;
}
.logout {
width: 15%;
float: right;
margin-right: 50px;
}
<section>
<div class="home">Home</div>
<div class="line"></div>
<div class="logout">Reports
<button> <a href="web url"> log out </a>
</button>
</div>
</section>
我一直在使用一個小時標籤試過,但我不能得到這工作的。
哈。你以10秒的時間擊敗了我。我花時間打出我的答案,並提交給你已經在這裏看到你。 +1 –
@Chris Stanley對不起'')' –
感謝這對我有用。所以這將與除了Internet Explorer之外的所有內容兼容? – ray