Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/1-trial-session/03-css/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ title: CSS
<Term>**`style`属性**</Term>は、全ての<Term>HTML要素</Term>に対して定義されている、<Term>CSS</Term>を記述するための属性です。次の例では、`div`要素の`style`属性に<Term>CSS</Term>を指定して、文字色を赤色にしています。

```html title="index.html"
<div style="color: red; font-size: 24px;">Hello World!</div>
<div style="color: red; font-size: 24px">Hello World!</div>
```

<ViewSource url={import.meta.url} path="_samples/first-css" />
Expand Down