> For the complete documentation index, see [llms.txt](https://learnhtml.gitbook.io/project/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://learnhtml.gitbook.io/project/tat-ca-nhung-gi-ban-can-biet-ve-thuoc-tinh-data-trong-html5.md).

# Tất cả những gì bạn cần biết về thuộc tính Data trong HTML5

Bài viêt khá hay về thuộc tính data trong html5

```
Ví dụ:
<div class="test" data-content="This is the div content">test</div>​
.test {
  display: inline-block;
}
 
.test:after {
  content: attr(data-content);
}
Bạn sẽ thấy điều bất ngời sảy ra :)))
```

```
https://webdesign.tutsplus.com/vi/tutorials/all-you-need-to-know-about-the-html5-data-attribute--webdesign-9642
```
