Skip to content

Instantly share code, notes, and snippets.

@LeeDDHH
Created January 30, 2021 00:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeeDDHH/82bb589278c41068476f23e1ea7b921d to your computer and use it in GitHub Desktop.
Save LeeDDHH/82bb589278c41068476f23e1ea7b921d to your computer and use it in GitHub Desktop.
vscodeでよく使うスニペット集

markdown

"markdown table": {
  "prefix": "table",
  "body": [
    "|$1||",
    "|--|--|",
    "|||"
  ],
  "description": "markdown用のテーブル"
}

css

"media query template": {
  "prefix": "meida",
  "body": [
    "/* 画面サイズが480pxからはここを読み込む */",
    "@media screen and (min-width:480px) {",
    "",
    "}",
    "",
    "/* 画面サイズが768pxから2014pxまではここを読み込む */",
    "@media screen and (min-width:768px) and (max-width:1024px) {",
    "",
    "}",
    "",
    "/* 画面サイズが1024pxからはここを読み込む */",
    "@media screen and (min-width:1024px) {",
    "",
    "}"
  ],
  "description": "media query用のテンプレート"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment