Live2D

vue_居中左对齐

div中文本居中对齐后,然后再左对齐

如下效果:

========================

=======22345645==========

=======2345678987654=====

=======12================

=========================

 

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <style>
    .container {
      text-align: center; /* 首先将文本居中 */
    }
    .content {
      display: inline-block; /* 使内容水平居中 */
      text-align: left; /* 然后将内容左对齐 */
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="content">
      <p>这是要居中然后左对齐的文本。</p>
    </div>
  </div>
</body>
</html>

 

posted @ 2024-03-07 13:46  -涂涂-  阅读(242)  评论(0编辑  收藏  举报