回答編集履歴
2
修正
test
CHANGED
@@ -8,8 +8,8 @@
|
|
8
8
|
```css
|
9
9
|
.science p {
|
10
10
|
position: absolute;
|
11
|
-
left:150px;
|
11
|
+
left: 150px;
|
12
|
-
bottom:180px;
|
12
|
+
bottom: 180px;
|
13
13
|
}
|
14
14
|
```
|
15
15
|
|
1
追記
test
CHANGED
@@ -4,4 +4,13 @@
|
|
4
4
|
position: relative;
|
5
5
|
}
|
6
6
|
```
|
7
|
+
後はお好みの位置に位置指定をしてやれば重なるはずです。
|
8
|
+
```css
|
9
|
+
.science p {
|
10
|
+
position: absolute;
|
11
|
+
left:150px;
|
12
|
+
bottom:180px;
|
13
|
+
}
|
14
|
+
```
|
7
15
|
|
16
|
+
|