質問編集履歴

1

文法の修正。

2020/10/28 09:19

投稿

You
You

スコア52

test CHANGED
File without changes
test CHANGED
@@ -2,21 +2,17 @@
2
2
 
3
3
 
4
4
 
5
- ここに質問の内容を詳しく書いてください。
6
-
7
- (例)PHP(CakePHP)で●●なシステムを作っています。
8
-
9
- ■■な機能実装中以下エラーメッセージが発生しました。
5
+ video横いっぱい縦にheight: 200px;ほど大きさで表示させ
10
6
 
11
7
 
12
8
 
13
- ### 発生ている問題・エラーメッセージ
9
+ ### width: 100%;を適用させるとvideoが横だけでなく縦に大きくなってまう。
14
10
 
15
11
 
16
12
 
17
13
  ```
18
14
 
19
- エラーメッセージ
15
+ transform: translateY(-50%);は下に余白が出来るので使えない。
20
16
 
21
17
  ```
22
18
 
@@ -26,9 +22,55 @@
26
22
 
27
23
 
28
24
 
29
- ```ここに言語名を入力
25
+ ```HTML
30
26
 
27
+ <div class="top">
28
+
29
+ <div class="top-video">
30
+
31
+ <p class="top-video__main text-center mt-5">Conquer yourself rather than the world.<br>In order to improve the mind, we ought less to learn, than to contemplate.</p>
32
+
33
+ </div>
34
+
35
+ <video src="video/Background - 8788.mp4" muted autoplay loop></video>
36
+
37
+ </div>
38
+
39
+ ```
40
+
31
- ソースコード
41
+ ```SCSS
42
+
43
+ .top-video {
44
+
45
+ position: relative;
46
+
47
+ &__main {
48
+
49
+ position: absolute;
50
+
51
+ top: 65px;
52
+
53
+ width: 100%;
54
+
55
+ z-index: 50;
56
+
57
+ font-size: 2.4rem;
58
+
59
+ font-weight: bold;
60
+
61
+ color: #fff;
62
+
63
+ }
64
+
65
+ }
66
+
67
+
68
+
69
+ .top video {
70
+
71
+ width: 100%;
72
+
73
+ }
32
74
 
33
75
  ```
34
76
 
@@ -38,7 +80,27 @@
38
80
 
39
81
 
40
82
 
83
+ .top video {
84
+
85
+ width: 100%;
86
+
87
+ height: 100%;
88
+
41
- ここに問題に対して試したことを記載してください。
89
+ transform: translateY(-50%);
90
+
91
+ }
92
+
93
+
94
+
95
+ .top video {
96
+
97
+ width: 100%;
98
+
99
+ height: 0;
100
+
101
+ padding: 300px 0;
102
+
103
+ }
42
104
 
43
105
 
44
106