簡體   English   中英

背景圖標圖像和標題文本未垂直對齊

[英]Background icon image and caption text are not aligned vertically

柱塞代碼在這里

我正在嘗試創建一個前面帶有圖標的下拉菜單。 我遇到一個問題,其中圖標的垂直對齊效果很好,但對於標題,文本顯示為中間行以下,

在此處輸入圖片說明

標題“ Select One位於中間線下方。 我如何向上移動它,使其與圖標處於同一水平?

請在您的CSS中更新以下代碼。

.grouped-list-btn-content > .grouped-list-text {
    margin-top: 6px;
}

9px的文字上有一個空白邊距:

.grouped-list-btn-content > .grouped-list-text {
    margin-left: 5px;
    margin-top: 9px;
}

將其更改為5px:

.grouped-list-btn-content > .grouped-list-text {
    margin-left: 5px;
    margin-top: 5px;
}

如果某項是行inline-block且未float ,則可以使用vertical-align: middle

看來您使用的是CSS框架,並且它是float ,則可以使用line-height: #replace this with height of the icon in px#是圖標高度固定。 使用line-height可以使文本垂直居中,且高度要高於文本。

柱塞

組列出了CSS文件中的文本:

.grouped-list-btn-content   > .grouped-list-text {
   margin-left: 5px;
   margin-top: 9px;
}

更改邊距頂部的數量,例如5應該使其更居中。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM