Compiler
CSS Properties
background-clip
Run
<!DOCTYPE html> <html> <head> <style> .border-box { border: 5px dashed #212b36; padding: 10px; background: lightgreen; background-clip: border-box; } .padding-box { border: 5px dashed #212b36; padding: 10px; background: lightpink; background-clip: padding-box; } .content-box { border: 5px dashed #212b36; padding: 10px; background: lightblue; background-clip: content-box; } </style> </head> <body> <h1>The background-clip Property</h1> <h2>background-clip: border-box</h2> <div class="border-box"> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> <h2>background-clip: padding-box</h2> <div class="padding-box"> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> <h2>background-clip: content-box</h2> <div class="content-box"> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p> </div> </body> </html>
Editor Commands
Commands
Shortcut Key (Win)
Shortcut Key (Mac)
selectAll
Ctrl-A
Cmd-A
singleSelection
Esc
-
killLine
-
Ctrl-K (Mac)
deleteLine
Ctrl-D
Cmd-D
undo
Ctrl-Z
Cmd-Z
redo
Ctrl-Y
Shift-Cmd-Z, Cmd-Y
undoSelection
Ctrl-U
Cmd-U
redoSelection
Alt-U
Shift-Cmd-U
goDocStart
Ctrl-Home
Cmd-Up, Cmd-Home
goDocEnd
Ctrl-End
Cmd-End, Cmd-Down
goLineStart
Alt-Left
Ctrl-A
goLineEnd
Alt-Right
Ctrl-E
goLineRight
-
Cmd-Right
goLineLeft
-
Cmd-Left
goLineUp
Up
Ctrl-P
goLineDown
Down
Ctrl-N
goPageUp
PageUp
Shift-Ctrl-V
goPageDown
PageDown
Ctrl-V
newlineAndIndent
Enter
-
save
Ctrl-S
Cmd-S