mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 11:08:51 +01:00
Hello Code
This commit is contained in:
19
extensions/css/snippets/css.json
Normal file
19
extensions/css/snippets/css.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"transition property": {
|
||||
"prefix": "transition",
|
||||
"body": [
|
||||
"transition: ${property} ${duration} ${timing-function} ${delay};",
|
||||
"-webkit-transition: ${property} ${duration} ${timing-function} ${delay};",
|
||||
"-o-transition: ${property} ${duration} ${timing-function} ${delay};",
|
||||
"-moz-transition: ${property} ${duration} ${timing-function} ${delay};"
|
||||
],
|
||||
"description": "The transition property across browsers"
|
||||
},
|
||||
"border": {
|
||||
"prefix": "border",
|
||||
"body": [
|
||||
"border: ${width} ${border-style} ${color};$0"
|
||||
],
|
||||
"description": "[width] [border-style] [color]"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user