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

# Simple selectors

* **Simple selectors** là tạo kiểu dựa trên tên thẻ,  `id`, `class`. Ví dụ:

```css
/* Tạo kiểu cho thẻ <p> */
p {
    color: red;
    text-align: center;
}
```

```css
/* Tạo kiểu cho những thẻ có class = "heading"  */
.heading {
    font-size: large;
    color: blue;
}
```

```css
/* Tạo kiểu cho thẻ có id = "title"  */
#title {
    font-size: large;
    text-decoration: underline;
}
```
