回答編集履歴

1

質問者のコメントに対する回答を追記

2017/12/10 10:27

投稿

退会済みユーザー
test CHANGED
@@ -13,3 +13,61 @@
13
13
  [http://www.tohoho-web.com/html/comments.htm](http://www.tohoho-web.com/html/comments.htm)
14
14
 
15
15
  [https://www.w3schools.com/html/html_comments.asp](https://www.w3schools.com/html/html_comments.asp)
16
+
17
+
18
+
19
+ ---
20
+
21
+ **質問者様のコメントに対する回答を追記**
22
+
23
+ > コマンドのうしろにコメントを打つことは可能なんですか?
24
+
25
+ やっぱり上か下に独立してコメント打たないとダメなんですか?
26
+
27
+
28
+
29
+ 「コマンド」が「タグ」のことを意味するのであれば可能です。
30
+
31
+
32
+
33
+ ```HTML
34
+
35
+ <div class="main">
36
+
37
+ teratail159826
38
+
39
+ </div><!-- .main -->
40
+
41
+ ```
42
+
43
+
44
+
45
+ > wordpress.orgでテキストに色をつけることは可能なんですか?
46
+
47
+
48
+
49
+ WordPressの投稿の作成・編集画面で投稿の内容に色をつけることは可能です。
50
+
51
+ エディタのモードが「ビジュアル」のときはGUIのメニュー「テキスト色」からつけられます。
52
+
53
+ 「テキスト」のときは、HTML/CSSで色をつけられます。
54
+
55
+ ```HTML
56
+
57
+ <span style="color: #008080;">teratail159826</span>
58
+
59
+ ```
60
+
61
+ noborinnnさんはHTML/CSSに関する基本的な知識が不足しているようにうかがえます。
62
+
63
+ HTML/CSSの入門書のような書籍やWebサイトで体系的な学習をして、まずは基本的な知識を身につけることをおすすめします。
64
+
65
+
66
+
67
+ **参考URL**
68
+
69
+ [http://www.notitle-weblog.com/entry/html-css](http://www.notitle-weblog.com/entry/html-css)
70
+
71
+ [https://saruwakakun.com/html-css/basic](https://saruwakakun.com/html-css/basic)
72
+
73
+ [https://techacademy.jp/magazine/8239](https://techacademy.jp/magazine/8239)