gpt4 book ai didi

css - 使用 css 伪元素居中图形

转载 作者:太空宇宙 更新时间:2023-11-04 15:20:32 24 4
gpt4 key购买 nike

我想在 css 伪类中将图形居中,但它不起作用。我尝试了以下方法:

#login .login:before {
content: url('../images/lglp.png');
display: inline-block !important;
margin: 0 auto !important;
}

有人有想法吗?

可以看到here直播中!

最佳答案

如果我理解正确你想要什么,你必须给出 width 并将 displayinline-block 更改为 block

#login .login:before {
content: url('../images/lglp.png');
display: block;
margin: 0 auto;
width:32px;
}

width 必须是图像宽度

关于css - 使用 css 伪元素居中图形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14645567/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com