質問編集履歴

1

コードを追加しました

2020/12/13 11:24

投稿

deresuke
deresuke

スコア17

test CHANGED
File without changes
test CHANGED
@@ -17,3 +17,65 @@
17
17
 
18
18
 
19
19
  https://www.kondotec.co.jp/
20
+
21
+
22
+
23
+ ```ここに言語を入力
24
+
25
+ html
26
+
27
+ <body>
28
+
29
+ <header>
30
+
31
+
32
+
33
+ </header>
34
+
35
+ </body>
36
+
37
+
38
+
39
+ css
40
+
41
+ *{
42
+
43
+ margin:0;
44
+
45
+ padding:0;
46
+
47
+ list-style: none;
48
+
49
+ box-sizing: border-box;
50
+
51
+ font-size: 16px;
52
+
53
+ font-family: "Source Han Sans JP";
54
+
55
+ text-decoration: none;
56
+
57
+ }
58
+
59
+
60
+
61
+
62
+
63
+ header{
64
+
65
+ height:80px;
66
+
67
+ width:100%;
68
+
69
+ position: fixed;
70
+
71
+ top:0;
72
+
73
+ z-index:9998;
74
+
75
+ background:#ffffff;
76
+
77
+ box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
78
+
79
+ }
80
+
81
+ ```