Để triển khai hoạt ảnh trên thuộc tính letter-spacing với CSS, bạn có thể thử chạy mã sau
Ví dụ
<!DOCTYPE html>
<html>
<head>
<style>
p {
letter-spacing: 3px;
animation: mymove 3s infinite;
}
@keyframes mymove {
70% {
letter-spacing: 20px;
}
}
</style>
</head>
<body>
<p>I am flying!</p>
</body>
</html>