div⾥⾯的p标签内容上下垂直居中<div>
  <p>这⾥是内容</p>
</div>
html怎么让所有内容居中
<style>
  div{
    width:300px;
    height:100px;
    display: flex;
    align-items: center;
  }
  p{
    margin: 0 auto;
  }
</style>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。