0
使用Bootstrap和一些社交媒體圖標(位於here)的自定義CSS,我創建了一個筆來演示(並測試)我的代碼。目標是創建可自動適合父級div(水平或垂直等)的圖標,並且除了一個小問題外,我都可以開展工作。我貼了兩個div(一個水平,一個垂直),並且在詞綴被觸發前100%不透明。然而,我知道爲什麼,該視圖仍然呈現與文檔的頂部和頁面標題之間基本看起來像一個巨大的邊緣。我怎樣才能清除這個,而仍然使用display:inline-block
?如何清除不透明粘貼的div高度?
下面是相關的div &類的CSS,但我建議你檢查出pen首先是因爲視覺上看到它expalins問題要好得多:
.snav {
top:50%;
margin-left:-15px;
background: rgb(0, 0, 0);
width:5rem;
height:25rem;
display:inline-block;
z-index:99;
transition: 1s all ease-in;
transform: translate(0, -50%);
opacity:0;
}
.horiz{
top:0;
margin-left: auto;
margin-right:auto;
z-index:99;
left:50%;
transition: 1s all ease;
transform: translate(-50%, 0);
opacity:0;
display:inline-block;
}
#horiz{
background: rgb(0,0,0);
width:26.6rem;
height:5rem;
}
.affix{
opacity:.5;
}
.affix:hover{
opacity:.9;
}
這將是更好的擴大「我知道爲什麼」的聲明 - 現在不可能評分答案,因爲他們可能只是重複你知道的*。 –