我需要在CSS中進行佈局,有點像這樣。佔據2個角色元素之間的整個寬度
綠色&紅色在左右角分別爲2個方格。我如何讓黃色區域佔據兩個區域之間的所有空間,並且也將居中的('Login',屏幕截圖中的)文本對齊。
另外我也嘗試了一些與Twitter-Bootstrap的東西。 col-md-1,左拉等沒有完全達到我的目的。任何幫助表示讚賞。
這是我工作的代碼(不加任何引導)
<head>
<style>
#myContainer{
background-color: silver;
overflow: hidden;
height: 50px;
width:100%;
}
#leftLogo{
width:40px;
height:40px;
background-color: green;
float:left;
}
#rightLogo{
width:40px;
height:40px;
background-color: red;
float:right;
}
#labelText{
height:40px;
float:left;
width:100%-80px;
background-color: #f3ff11;
}
</style>
</head>
<body>
<div id="myContainer">
<span id="leftLogo"></span>
<center>
<span id="labelText"><H2>Login</H2>></span>
</center>
<span id="rightLogo"></span>
</div>
爲什麼人們似乎認爲顯示:表和表細胞比位置好:絕對?位置:如果瀏覽器更友好,絕對不是嗎? –
這不是每一種你可以依賴定位的情況,所以這是另一種選擇。 – melancia