mirror of
https://github.com/tabler/tabler.git
synced 2026-08-05 01:44:41 +04:00
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
---
|
||
title: Flags
|
||
summary: Thanks to the Tabler flags plugin, you can create flags to visually represent countries or languages. Flags are often used in forms, as an element of a delivery address, phone number dialling code and many more.
|
||
plugin: flags
|
||
docs-libs: tabler-flags
|
||
description: Visual representation of countries/languages.
|
||
layout: '@shared/layouts/DocsMdxLayout.astro'
|
||
---
|
||
|
||
import Example from '@components/Example.astro'
|
||
import Flags from '@components/Flags.astro'
|
||
import CdnImportPlugin from '@components/CdnImportPlugin.astro'
|
||
|
||
## Installation
|
||
|
||
This part of Tabler is distributed as a plugin. To enable it you should include `tabler-flags.css` or `tabler-flags.min.css` file in your page.
|
||
|
||
You can also include the plugin via CDN:
|
||
|
||
<CdnImportPlugin plugins={['flags']} />
|
||
|
||
## Flag
|
||
|
||
To create a flag, add the `flag` class to a component and choose the country whose flag you want to use.
|
||
|
||
<Example>
|
||
<span class="flag flag-country-us"></span>
|
||
</Example>
|
||
|
||
## Country flags
|
||
|
||
To use the flag of a particular country, add the `flag-country-(country name)` class. For example, to create a flag of Andorra, you should use the following class: `.flag-country-ad`. The full list of countries can be found at the end of this page.
|
||
|
||
<Example>
|
||
<span class="flag flag-country-tg"></span>
|
||
<span class="flag flag-country-br"></span>
|
||
<span class="flag flag-country-pt"></span>
|
||
</Example>
|
||
|
||
## Flag sizes
|
||
|
||
Using Bootstrap’s typical naming structure, you can create a standard flag, or scale it up or down to different sizes based on what’s needed.
|
||
|
||
<Example>
|
||
<span class="flag flag-xl flag-country-us"></span>
|
||
<span class="flag flag-lg flag-country-us"></span>
|
||
<span class="flag flag-md flag-country-us"></span>
|
||
<span class="flag flag-sm flag-country-us"></span>
|
||
<span class="flag flag-xs flag-country-us"></span>
|
||
</Example>
|
||
|
||
## Flags list
|
||
|
||
The full list of countries can be found below.
|
||
|
||
<Flags />
|