行内元素垂直居中

情景:

<div>
	text
</div>

方法有两种:css如下设置

  /* 行内元素 垂直水平居中1 */
  height: 0.5rem;
  line-height: 0.5rem; // 和height一样
  text-align: center;
 /* 行内元素 垂直水平居中2 */
 /* display: flex; */
 /* justify-content: center;  */
 /* align-items: center;  */

原文连接

猜你喜欢

转载自blog.csdn.net/sunfellow2009/article/details/84319511
今日推荐