# Some of my Favorite CSS Styling Rules

### 1\. list-style-position: inside;

For centering the bullet points together with the list items of an unordered list in HTML <ul>

```css
ul {
    text-align: center;
    list-style-position: inside;
}
```

%[https://codepen.io/multignite/pen/wvxmWjP]
