父元素的基线咋确定的?

by jizhen tan

HTML

<div class="demo">
	<span class='line-box'>
		<img src="https://sfault-avatar.b0.upaiyun.com/344/542/3445428434-5631776c183b2_huge256" alt=""><span>Xx</span>
	</span>
</div>

CSS

.demo {
	background: red;

}
.line-box {
	background: blue;
	line-height: 200px;
}
.line-box img {
	width: 50px;
}
.line-box span {
	margin-left: 20px;
	color: yellow;
	vertical-align: text-bottom;
	/* 读者请自行更改属性值: top, text-top, bottom, text-bottom观察效果 */
}