回答編集履歴

1

画像のほうを伸縮

2019/03/14 08:28

投稿

x_x
x_x

スコア13749

test CHANGED
@@ -11,3 +11,43 @@
11
11
  }
12
12
 
13
13
  ```
14
+
15
+
16
+
17
+ -- 追記。画像のほうを伸縮
18
+
19
+ ```CSS
20
+
21
+ article.kiji {
22
+
23
+ position: relative;
24
+
25
+ }
26
+
27
+
28
+
29
+ article.kiji::before {
30
+
31
+ content: '';
32
+
33
+ position: absolute;
34
+
35
+ left: 0;
36
+
37
+ width: 50%;
38
+
39
+ height: 100%;
40
+
41
+ /* 画像はこちらで */
42
+
43
+ background-image: url("背景画像");
44
+
45
+ background-position: left top;
46
+
47
+ background-size: cover;
48
+
49
+ background-repeat: no-repeat;
50
+
51
+ }
52
+
53
+ ```