質問編集履歴
2
ああああああああああああああああああ
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
ああああああああああああああああああ
|
test
CHANGED
@@ -1,155 +1 @@
|
|
1
|
-
### 前提・実現したいこと
|
2
|
-
|
3
|
-
inputのボタンを二つ横にぴったりついた状態で表示させたい。
|
4
|
-
|
5
|
-
ここに質問の内容を詳しく書いてください。
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
### 該当のソースコード
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
```jsp
|
16
|
-
|
17
|
-
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
18
|
-
|
19
|
-
|
1
|
+
ああああああああああああああああああああああああああああああああああああ
|
20
|
-
|
21
|
-
<%@ page import ="model.Product" %>
|
22
|
-
|
23
|
-
<% Product product =(Product) request.getAttribute("Product");%>
|
24
|
-
|
25
|
-
<!DOCTYPE html>
|
26
|
-
|
27
|
-
<html lang="ja" dir="ltr">
|
28
|
-
|
29
|
-
<head>
|
30
|
-
|
31
|
-
<meta charset="utf-8">
|
32
|
-
|
33
|
-
<link rel="stylesheet" type="text/css" href="<%=request.getContextPath() %>/css/style.css">
|
34
|
-
|
35
|
-
<title>商品情報管理システム</title>
|
36
|
-
|
37
|
-
</head>
|
38
|
-
|
39
|
-
<body>
|
40
|
-
|
41
|
-
<h1>在庫管理システム</h1>
|
42
|
-
|
43
|
-
<input class="input1" type="image" name="検索" value="検索" src="image/検索1.png">
|
44
|
-
|
45
|
-
<input type="image" name="検索" value="検索" src="image/検索1.png">
|
46
|
-
|
47
|
-
<table border="1">
|
48
|
-
|
49
|
-
<!-- 1行目 -->
|
50
|
-
|
51
|
-
<tr>
|
52
|
-
|
53
|
-
<th>商品ID</th>
|
54
|
-
|
55
|
-
<th>画像</th>
|
56
|
-
|
57
|
-
<th>メーカー名</th>
|
58
|
-
|
59
|
-
<th>商品名</th>
|
60
|
-
|
61
|
-
<th>ジャンル</th>
|
62
|
-
|
63
|
-
<th>在庫数</th>
|
64
|
-
|
65
|
-
<th>販売個数</th>
|
66
|
-
|
67
|
-
<th>価格</th>
|
68
|
-
|
69
|
-
</tr>
|
70
|
-
|
71
|
-
<!-- 二行目 -->
|
72
|
-
|
73
|
-
<tr>
|
74
|
-
|
75
|
-
<td><%=product.getProductid()%></td>
|
76
|
-
|
77
|
-
<td><img class="watch" src="image/Aandyou_SW_E07_一覧用.png"></td>
|
78
|
-
|
79
|
-
<td><%=product.getProductmaker()%></td>
|
80
|
-
|
81
|
-
<td><%=product.getProductname()%></td>
|
82
|
-
|
83
|
-
<td><%=product.getProductgenre()%></td>
|
84
|
-
|
85
|
-
<td><%=product.getProductstock()%></td>
|
86
|
-
|
87
|
-
<td><%=product.getProductsales()%></td>
|
88
|
-
|
89
|
-
<td><%=product.getProductprice()%></td>
|
90
|
-
|
91
|
-
</tr>
|
92
|
-
|
93
|
-
</table>
|
94
|
-
|
95
|
-
</body>
|
96
|
-
|
97
|
-
</html>
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
```
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
```css
|
106
|
-
|
107
|
-
@charset "UTF-8";
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
h1 {
|
112
|
-
|
113
|
-
font-size: 36px;
|
114
|
-
|
115
|
-
background-color: black;
|
116
|
-
|
117
|
-
color: white;
|
118
|
-
|
119
|
-
}
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
th {
|
124
|
-
|
125
|
-
background-color: #959ADC;
|
126
|
-
|
127
|
-
}
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
.input1 {
|
132
|
-
|
133
|
-
margin-left: 750px;
|
134
|
-
|
135
|
-
}
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
.watch {
|
140
|
-
|
141
|
-
height: 100px;
|
142
|
-
|
143
|
-
}
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
```
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
![表示画像](d9620db933ae695983e0df57deaa7479.png)
|
152
|
-
|
153
|
-
CSSはおそらく間違えていないかと思ったのですが...ご教授いただければ幸いです。
|
154
|
-
|
155
|
-
ちなみにプロジェクトのクリーンなどはしております。
|
1
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -146,6 +146,10 @@
|
|
146
146
|
|
147
147
|
```
|
148
148
|
|
149
|
+
|
150
|
+
|
151
|
+
![表示画像](d9620db933ae695983e0df57deaa7479.png)
|
152
|
+
|
149
153
|
CSSはおそらく間違えていないかと思ったのですが...ご教授いただければ幸いです。
|
150
154
|
|
151
155
|
ちなみにプロジェクトのクリーンなどはしております。
|