SOURCE

console 命令行工具 X clear

                    
>
console
<!--
 * @Descripttion: 
 * @Version: 1.0
 * @Author: liyuehong liyuehong@jxcc.com
 * @Date: 2024-03-13 09:19:18
-->
<!DOCTYPE html>
<html lang="zh-CN">

<head>
	<meta charset="UTF-8" />
	<title>vertical-align</title>
	<style>
		#d1 {
			width: 400px;
			height: 400px;
			background-color: skyblue;
			line-height: 400px;
			text-align: center;
            font-size:0;
		}

		span {
            font-size:20px;
			background-color: orange;
            vertical-align: middle;
		}
        img{
            width:100px;
            display:inline;
            vertical-align: middle;
        }
	</style>
</head>

<body>
	<div id="d1">
		<span>不如提桶跑路X</span><img src="https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg" />
	</div>
</body>

</html>