CodeLab
Tutorials For Everyone
Run
Learn CSS
<!DOCTYPE html> <html> <head> <style> table, th, td { border: 1px solid black; border-spacing: 10px; animation: anim 5s infinite; margin: auto; } @keyframes anim { 50% {border-spacing: 30px;} } </style> </head> <body> <h1>Animatable 'border-spacing' Property</h1> <hr> <p>Experience the changing border spacig of the table using border-spacing property.<p> <table> <tr> <th>Name</th> <th>Age</th> </tr> <tr> <td>John</td> <td>20</td> </tr> <tr> <td>Miller</td> <td>32</td> </tr> <tr> <td>Linus</td> <td>42</td> </tr> </table> </body> </html>
Editor Commands
Ctrl
F
Find
Ctrl
G
Find Next
Ctrl
⇧
G
Find Previous
Ctrl
⇧
F
Find & Replace
Ctrl
]
Indent Code Right
Ctrl
[
Indent Code Left
⇧
Tab
Auto Indent Code
Ctrl
/
Line Comment
Ctrl
Alt
/
Block Comment
TutsInsider Actions
Alt
S
Run Code
Ctrl
C
Copy Editor Code
Ctrl
A
Select All Editor Code
Ctrl
S
Save/Download
Ctrl
Alt
X
Rotate
Ctrl
Alt
T
Switch Theme
Ctrl
⇧
C
Open Console
Esc
Close Console