質問するログイン新規登録

質問編集履歴

1

コードを追加しました

2020/12/13 11:24

投稿

deresuke
deresuke

スコア17

title CHANGED
File without changes
body CHANGED
@@ -7,4 +7,35 @@
7
7
  jQuery等での処理が別で必要なのでしょうか。
8
8
  ご教授いただきたいです。
9
9
 
10
- https://www.kondotec.co.jp/
10
+ https://www.kondotec.co.jp/
11
+
12
+ ```ここに言語を入力
13
+ html
14
+ <body>
15
+ <header>
16
+
17
+ </header>
18
+ </body>
19
+
20
+ css
21
+ *{
22
+ margin:0;
23
+ padding:0;
24
+ list-style: none;
25
+ box-sizing: border-box;
26
+ font-size: 16px;
27
+ font-family: "Source Han Sans JP";
28
+ text-decoration: none;
29
+ }
30
+
31
+
32
+ header{
33
+ height:80px;
34
+ width:100%;
35
+ position: fixed;
36
+ top:0;
37
+ z-index:9998;
38
+ background:#ffffff;
39
+ box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.12);
40
+ }
41
+ ```