You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/2-javascript-training/01-inspector/index.md
+102-6Lines changed: 102 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,110 @@ title: ブラウザの開発者ツール
5
5
import CodeBlock from '@theme/CodeBlock';
6
6
import Term from "@site/src/components/Term";
7
7
import OpenInCodeSandbox from "@site/src/components/OpenInCodeSandbox";
8
+
import inspectElementsVideo from "./inspect-elements.mp4";
9
+
import { GrSelect } from "react-icons/gr";
8
10
9
-
## ブラウザの開発者ツールを利用する
11
+
## 開発者ツールを起動する
10
12
11
-
- 開発者ツールの起動方法
12
-
- HTML や CSS の確認・編集方法
13
+
Google Chrome などのブラウザに搭載されている**開発者ツール**には、ウェブ開発をサポートする様々な機能が提供されています。
14
+
15
+
:::info Google Chrome 以外の開発者ツール
16
+
Google Chrome 以外のブラウザにも開発者ツールは搭載されています。ほとんど同等の機能が提供されているので、基本的にはどれを使っても構いません。しかしながら、Google Chrome のものが最も多く使用されており、本カリキュラムでも基本的には Google Chrome を用いるものとします。
0 commit comments