此问题在此处已有答案:
Flexbox: center horizontally and vertically(14个答案)
昨天就关门了。
如何将Logout
和logout.svg
对齐在一行中,以便当您将鼠标悬停在其上时可以正确显示?
.dropdown {
position: absolute;
min-width: 150px;
background-color: yellow;
}
#row {
display: flex;
}
#logout {
height: 25px;
}
#element {
display: block;
padding: 14px;
border-bottom: 1px solid #caced1;
}
#element:hover {
background-color: white;
}
个字符
我试着将图标定位为绝对值,并为其添加边距,但没有成功。
1条答案
按热度按时间r9f1avp51#
使用
align-items: center;
即可个字符