回答編集履歴

2

コード追記

2020/08/26 11:09

投稿

hatena19
hatena19

スコア34075

test CHANGED
@@ -35,3 +35,17 @@
35
35
  background: url(images/square.png) no-repeat left center;
36
36
 
37
37
  ```
38
+
39
+
40
+
41
+ あと、下線は 左右マージンを適切に設定すればいいでしょう。
42
+
43
+ 模写先は下記のように設定してます。
44
+
45
+
46
+
47
+ ```css
48
+
49
+ margin: 0px 12px;
50
+
51
+ ```

1

コード追記

2020/08/26 11:09

投稿

hatena19
hatena19

スコア34075

test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  .list li {
8
8
 
9
- background-image: url(https://haniwaman.com/sample/part3/template_08/common/images/bgListIcon01.png);
9
+ background-image: url(images/square.png);
10
10
 
11
11
  background-repeat: no-repeat;
12
12
 
@@ -23,3 +23,15 @@
23
23
  }
24
24
 
25
25
  ```
26
+
27
+
28
+
29
+ ショートハンド(省略記法)で書くこともできます。
30
+
31
+
32
+
33
+ ```css
34
+
35
+ background: url(images/square.png) no-repeat left center;
36
+
37
+ ```