LoginSignup
0
0

More than 1 year has passed since last update.

【個人メモ】Webサイト構築の際に活用したサイト

Last updated at Posted at 2022-10-22

Webフォント

Googleフォント(公式)
NuxtでGoogleフォント使う
Googleフォントがスマホで反映されない

レスポンシブ対応

mixin

DOM操作

セレクタによるDOM取得

jQuery

インストール
エラー対応

html要素にスタイルを追加する。

layout
<script>
export default {
  head: {
    htmlAttrs: {
      class: ['single-html-class']
    },
  },
  name: 'Layout'
}
</script>

<style lang="scss">
.single-html-class {
  font-size: 62.5%;
}
</style>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0