質問編集履歴

1

ソースの追加

2016/02/15 02:38

投稿

aaaaaaaaaaaaaa
aaaaaaaaaaaaaa

スコア77

test CHANGED
File without changes
test CHANGED
@@ -6,17 +6,33 @@
6
6
 
7
7
 
8
8
 
9
-
10
-
11
- print.css
9
+ nyuryoku.html
12
10
 
13
11
  ```ここに言語を入力
12
+
13
+ <!DOCTYPE html>
14
+
15
+ <html>
16
+
17
+ <style>
14
18
 
15
19
  @media print {
16
20
 
17
21
  div {
18
22
 
19
- zoom: 50%;
23
+ zoom: 50%;
24
+
25
+ }
26
+
27
+ .frm{
28
+
29
+ position:absolute; top:0px; left:0px;
30
+
31
+ }
32
+
33
+ #submit_button{
34
+
35
+ visibility: hidden;
20
36
 
21
37
  }
22
38
 
@@ -26,8 +42,44 @@
26
42
 
27
43
  }
28
44
 
29
-
30
-
31
45
  }
32
46
 
47
+ </style>
48
+
49
+ <head>
50
+
51
+ <meta charset="UTF-8" />
52
+
53
+ </head>
54
+
55
+ <body>
56
+
57
+ <div class="table" style='position:absolute; top:100px; left:50px;'>
58
+
59
+ <form class="frm" action="syori.php" method="POST">
60
+
61
+ <font size="5" color="#000000">
62
+
63
+ <input type="submit" id="submit_button" value="送信"><br>
64
+
65
+ <table border="1" rules="all" cellspacing="10" style="position:relative; left:5px">
66
+
67
+ <tr><th width=20>NO</th><th width=90>ああああ</th><th class="tenpo" width="300">テストああああ</th><th width=180>(L)</th><th>(M)</th><th width=180>(S)</th><th width=200>テスト改行<br>入れてみた</th></tr>
68
+
69
+ <tr><th>1</th><th><input type="hidden" name="tencode[0]" class="tencode" value="000">000</th><th><input type="hidden" name="tenname[0]" class="tenname" value="設定データ">設定データ</th><th><table><tr><th><input type='number' min='0' max='999999' maxlength='6' name="inputl[0]" class="inputl"size="20" autofocus></th><th>箱</th></tr></table></th><th><table><tr><th><input type='number' min='0' max='999999'name="inputm[0]" class="inputm" size="20" maxlength='6' ></th><th>箱</th></tr></table></th><th><table><tr><th><input type='number' min='0' max='999999'name="inputs[0]" class="inputs" size="20" maxlength='6'></th><th>箱</th></tr></table></th><th><table><tr><th><input type='number' min='0' max='999999'class="inputsum" size="20" readonly="false" ></th><th>箱</th></tr></table></th></tr>
70
+
71
+ </th></tr>
72
+
73
+ </table>
74
+
75
+ </font>
76
+
77
+ </form>
78
+
79
+ </div>
80
+
81
+ </body>
82
+
83
+ </html>
84
+
33
85
  ```