How To Center a List

PHOTO EMBED

Mon Dec 05 2022 13:48:51 GMT+0000 (Coordinated Universal Time)

Saved by @savabeh191

<html>

<head>
    <style>
        div.container {
          text-align: center;
        }
        
        ul.myUL {
          display: inline-block;
          text-align: left;
        }
        
        li {
          font-size: 40px;
        }
    </style>
</head>

<body>

    <div class="container">
        <h2>How To Center a List</h2>
        <ul class="myUL">
            {lis}
        </ul>
    </div>

</body>

</html>
content_copyCOPY