---
title: "Override Properties of a CSS Class"
date: 2019-11-16T15:33:43.000Z
author: Z.SHINCHVEN
tags: [CSS]
canonical: https://atlassc.net/2019/11/17/override-css-class
---
Third party components sometimes may just not fit in, we can override its perperties to fix it.

```CSS
.container { // My div to surround third party components

  :global .ant-form-item { // use :global syntax to override properties of the class.
    margin-bottom: 0;
  }
}
```
