Skip to content

Commit 8b77ab8

Browse files
authored
HTML内のstyle属性の末尾セミコロンの有無を統一 (#920)
1 parent 5e6391b commit 8b77ab8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/1-trial-session/03-css/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ title: CSS
1212
<Term>**`style`属性**</Term>は、全ての<Term>HTML要素</Term>に対して定義されている、<Term>CSS</Term>を記述するための属性です。次の例では、`div`要素の`style`属性に<Term>CSS</Term>を指定して、文字色を赤色にしています。
1313

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

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

0 commit comments

Comments
 (0)