html 要素を右に並べたい

 

とりあえず、メモ

    display: flex;

ーーーー


<html>
<style>
  .flex {
    display: flex;
  }
</style>
<body>
  <div class="flex">
    <p>社長</p>
    <p>部長</p>
    <p>課長</p>
  </div>
</body>
</html>

Flashコンテンツの再構築