質問編集履歴
1
回答を受けて訂正
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,7 +4,6 @@
|
|
4
4
|
自分が書いたコードは以下になります。
|
5
5
|
```HTML
|
6
6
|
<div class ="main-visual">
|
7
|
-
<section class="main-visual-content">
|
8
7
|
<h1 class="title1">#</h1>
|
9
8
|
</section>
|
10
9
|
</div>
|
@@ -12,10 +11,14 @@
|
|
12
11
|
|
13
12
|
```CSS
|
14
13
|
.title1{
|
14
|
+
.title1{
|
15
15
|
font-size: 4rem;
|
16
16
|
display: flex;
|
17
|
-
flex-direction: row;
|
18
17
|
justify-content: center;
|
18
|
+
align-items: center;
|
19
|
+
height:100%;
|
20
|
+
margin:0;
|
21
|
+
padding:0;
|
19
22
|
}
|
20
23
|
|
21
24
|
.main-visual{
|