x
 
1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
pre {
5
  tab-size: 2;
6
  animation: myAnimation 3s ease 1s 5 alternate forwards;
7
}
8
9
@keyframes myAnimation {
10
  100% {
11
    tab-size: 12;
12
  }
13
}
14
</style>
15
16
<pre>
17
No tab
18
    One tab
19
        Two tabs
20
</pre>