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

Last updated