当前位置:网站首页>Vertical align cannot align the picture and text vertically
Vertical align cannot align the picture and text vertically
2022-07-27 08:23:00 【Gru 977】
problem :
Use vertical-align: middle; You can't center the picture and text vertically .
In this way HTML For example :
<div class="footer">
<div class="wrapper">
<div class="top">
<ul>
<li>
<!-- Add labels through pseudo elements , Implement the wizard diagram -->
<span> I'm Gru </span>
</li>
</ul>
</div>
</div>
</div>Solution steps :
1. Use vertical-align: middle; You can't center the picture and text vertically , The text is above .
/* Tags added by pseudo elements inline */
.footer .top li::before {
/* 1. Not centered */
vertical-align: middle;
}

2. Use line-height , At this time, the picture is lower .
.footer .top li {
/* 2. Add line height , Picture down */
line-height: 58px;
height: 58px;
}3. Try positioning , Let the picture and the text be at the same starting point , Then add margin-left Move back a distance .
.footer .top li {
position: relative;
}
/* Tags added by pseudo elements inline */
.footer .top li::before {
/* 3. Absolute positioning */
position: absolute;
top: 0;
left: 0;
}
.footer .top li span {
/* 3. Then adjust the position. */
margin-left: 77px;
}
summary :
Positioning may cause a chain reaction , So when adjusting , it is to be noted that , When is the parent , Which children are included under the parent , Wait a series ( At present, there is no in-depth discussion ).
边栏推荐
- The code interface is a little automated
- Qt Creator代码风格插件Beautifier
- Why do major domestic manufacturers regard cloud computing as a pastry? Do you really understand this trillion market
- Ubuntu: install PostgreSQL
- 1176 questions of Olympiad in informatics -- who ranked K in the exam
- The seta 2020 international academic conference will be held soon. Welcome to attend!
- 开怀一笑
- 阿里云国际版回执消息简介与配置流程
- How to log in multiple wechat on the computer
- [applet] how to get wechat applet code upload key?
猜你喜欢

UVM入门实验1

OPPO 自研大规模知识图谱及其在数智工程中的应用

虚拟机克隆

Promise details

Dasctf2022.07 enabling game password WP

Node installation and debugging
Development of three database general SQL code based on PG Oracle and MySQL

Interviewer: what is scaffolding? Why do you need scaffolding? What are the commonly used scaffolds?

All in one 1329 cells (breadth first search)

The seta 2020 international academic conference will be held soon. Welcome to attend!
随机推荐
XxE & XML vulnerability
Debug: generic related "unresolved external symbols"
关于数据库的接口响应非常慢
I drew a Gu ailing with characters!
"Basic knowledge of PHP" implement mathematical operations in PHP
Stored procedure test 1 -- first acquaintance of love
[MRCTF2020]Ezpop 1
Luogu super Mary game
QPushButton 按钮的创建与简单应用
带宽 与 货币
JS basic knowledge - daily learning summary ①
Use of "PHP Basics" Boolean
如何卸载--奇安信安全终端管理系统
[uni app advanced practice] take you hand-in-hand to learn the development of a purely practical complex project 1/100
阿里云国际版回执消息简介与配置流程
The seta 2020 international academic conference will be held soon. Welcome to attend!
OSI seven layer model and tcp/ip four layer (TCP and UDP) (notes)
Interviewer: what is scaffolding? Why do you need scaffolding? What are the commonly used scaffolds?
Vcenter7.0 managing esxi7.0 hosts
1178 questions of Olympiad in informatics -- ranking of grades
