> For the complete documentation index, see [llms.txt](https://cyberacademyuz.gitbook.io/w3schools/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cyberacademyuz.gitbook.io/w3schools/css/css-qollanma/css-matn/text-transform.md).

# Text transform

## Matn harflarini o'zgartirish <a href="#matn-harflarini-ozgartirish" id="matn-harflarini-ozgartirish"></a>

<mark style="color:red;">`text-transform`</mark> xususiyati matndagi harflarni katta yoki kichik qilish uchun ishlatladi.

U matndagi barcha harflarni katta yoki kichik harfga o'girish yoki har bir so'zning birinchi harfini bosh harf bilan yozish uchun ishlatilishi mumkin:

{% tabs %}
{% tab title="CSS" %}

```css
p.uppercase {
  text-transform: uppercase;
}

p.lowercase {
  text-transform: lowercase;
}

p.capitalize {
  text-transform: capitalize;
}
```

{% embed url="<https://www.w3schools.com/css/tryit.asp?filename=trycss_text-transform>" %}
{% endtab %}
{% endtabs %}

### <mark style="color:green;">Text Transformation xususiyati</mark>

| Xususiyat                                                                     | Ifoda                                              |
| ----------------------------------------------------------------------------- | -------------------------------------------------- |
| [text-transform](https://www.w3schools.com/cssref/pr_text_text-transform.asp) | Matnning katta kichik harfda bo'lishini boshqaradi |
