15
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ulの左端を揃えたまま中央寄せする

Last updated at Posted at 2018-06-21
html
<div class="content-txt">
  <p class="txt-center">
    タイトル
  </p>
  <div class="ul-align-center">
    <ul>
      <li>1行目</li>
      <li>2行目2行目</li>
      <li>3行目3行目3行目</li>
    </ul>
  </div>
  <p class="txt-right">
    右寄せ
  </p>
</div>
sass
.content-txt{
  border: 1px solid;
  
  .txt-center{
    text-align: center;
  }
  .txt-right{
    text-align: right;
  }
  ul{
    list-style: disc;
    padding-left: 15px;
  }
  .ul-align-center{
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

結果

image.png

15
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?