> For the complete documentation index, see [llms.txt](https://bugtype-kr.gitbook.io/frontend/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bugtype-kr.gitbook.io/frontend/css/css-snippet.md).

# css snippet

마지막 child를 제외하고 margin-right 값 주기

```css
ul li :not(:last-child) {
    margin-right: 5px;
}
```

```jsx
const Group = styled.ul`
    & > li:not(:last-child) {
        margin-right: 5px;
    }
`
```
