CodeLab
Tutorials For Everyone
Run
Learn CSS
<!DOCTYPE html> <html> <head> <style> #grid-container { display: grid; grid-template-areas: 'item1-area item1-area . . .'; background: #333; grid-gap: 5px; padding: 5px; box-shadow: 0 0 10px 0 #aaa; animation: anim 5s infinite; } #grid-container div { text-align: center; padding: 20px 0; font-size: 20px; background: #97ff99; } .item1 { grid-area: item1-area; animation: anim-a 5s infinite; } @keyframes anim { 50% {grid-template-areas: '. . . item1-area item1-area';} } @keyframes anim-a { 50% {background: #2a73cc;} } </style> </head> <body> <h1>Animatable 'grid-template-areas' Property</h1> <hr> <p>Experience the changing area position of item1.</p> <div id="grid-container"> <div class="item1">1</div> <div class="item2">2</div> <div class="item3">3</div> <div class="item4">4</div> <div class="item5">5</div> <div class="item6">6</div> <div class="item7">7</div> <div class="item8">8</div> <div class="item9">9</div> </div> </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