質問編集履歴

1

ソースコードの画像を載せるのではなく、記入しました

2020/01/30 13:39

投稿

shinaozora50
shinaozora50

スコア15

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,82 @@
1
- 円の中に文字や記号が入ってるものをリストタグを使って> 引用テキスト3つ作りたいのですが、上手くいきません。![![引用テキスト](221f2f755c900883487eeb2647041715.png)](17c59f202303ea39ae0bb916a5cf291f.png)
1
+ 円の中に文字や記号が入ってるものをリストタグを使って> 引用テキスト3つ作りたいのですが、上手くいきません。!
2
2
 
3
+ ```HTML
4
+
5
+ <div class="navigation">
6
+
7
+ <ol>
8
+
9
+ <li>
10
+
3
- ![イメージ説明](4ce7b99eba38918d1ccee460d8ad83e0.png)
11
+ <a href="">1.テキストテキストテキスト</a>
12
+
13
+ </li>
14
+
15
+ <li>
16
+
17
+ <a href="">2.テキストテキストテキスト</a>
18
+
19
+ </li>
20
+
21
+ <li>
22
+
23
+ <a href="">3.テキストテキストテキスト</a>
24
+
25
+ </li>
26
+
27
+ </ol>
28
+
29
+ </div>
30
+
31
+ ```
32
+
33
+
34
+
35
+ ```CSS
36
+
37
+ .navigation {
38
+
39
+ position: relative;
40
+
41
+ display: inline-block;
42
+
43
+ width: 200px;
44
+
45
+ height: 200px;
46
+
47
+ border-radius: 50%;
48
+
49
+ border: solid 1px black;
50
+
51
+ margin: 0 auto;
52
+
53
+ }
54
+
55
+
56
+
57
+ .navigation li {
58
+
59
+ position: absolute;
60
+
61
+ display: inline-block;
62
+
63
+ left: 0%;
64
+
65
+ top: 50%;
66
+
67
+ -webkit-transform: translateY(-50%);
68
+
69
+ transform: translateY(-50%);
70
+
71
+ width: 100%;
72
+
73
+ text-align: center;
74
+
75
+ }
76
+
77
+ ```
78
+
79
+
4
80
 
5
81
 
6
82