質問編集履歴
1
コードについて現状のものに変更致しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,43 @@
|
|
10
10
|
|
11
11
|
```html
|
12
12
|
|
13
|
+
<html>
|
14
|
+
|
15
|
+
<head>
|
16
|
+
|
17
|
+
<title>test</title>
|
18
|
+
|
19
|
+
<link rel="stylesheet" href="./css/style_tera.css">
|
20
|
+
|
21
|
+
</head>
|
22
|
+
|
23
|
+
<body>
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
<form name="form1">
|
28
|
+
|
29
|
+
<table class="picTable">
|
30
|
+
|
31
|
+
<tr>
|
32
|
+
|
13
|
-
<td><img class="pic_img" src=""></td>
|
33
|
+
<td><img class="pic_img" src="http://placehold.jp/346x170.png"></td>
|
34
|
+
|
35
|
+
<td><img class="pic_img" src="http://placehold.jp/346x183.png"></td>
|
36
|
+
|
37
|
+
<td><img class="pic_img" src="http://placehold.jp/340x164.png"></td>
|
38
|
+
|
39
|
+
</tr>
|
40
|
+
|
41
|
+
</table>
|
42
|
+
|
43
|
+
</form>
|
44
|
+
|
45
|
+
</body>
|
46
|
+
|
47
|
+
</html>
|
48
|
+
|
49
|
+
|
14
50
|
|
15
51
|
```
|
16
52
|
|
@@ -18,15 +54,33 @@
|
|
18
54
|
|
19
55
|
```css
|
20
56
|
|
57
|
+
.picTable {
|
58
|
+
|
59
|
+
width: 100%;
|
60
|
+
|
61
|
+
}
|
62
|
+
|
21
63
|
td{
|
22
64
|
|
23
|
-
width:15%;
|
65
|
+
width: 15%;
|
66
|
+
|
67
|
+
padding-top: 7.5%;
|
68
|
+
|
69
|
+
position: relative;
|
24
70
|
|
25
71
|
}
|
26
72
|
|
27
73
|
.pic_img {
|
28
74
|
|
75
|
+
position: absolute;
|
76
|
+
|
29
77
|
width: 100%;
|
78
|
+
|
79
|
+
height: 100%;
|
80
|
+
|
81
|
+
top: 0;
|
82
|
+
|
83
|
+
left: 0;
|
30
84
|
|
31
85
|
}
|
32
86
|
|