fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
1
2
3
4
|
<!DOCTYPE html>
<html lang="en">
<head>
<style>
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
5
6
|
th, td { padding: 0.5em; }
table
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
7
8
|
{
display: inline-block;
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
9
|
vertical-align: top;
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
10
11
12
13
|
text-align: right;
font-family: monospace;
font-size: 1.2em;
border: 1px solid black;
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
14
|
border-collapse: collapse;
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
15
|
}
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
16
|
tr:nth-child(even) { background-color: #EEE; }
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
17
18
19
|
</style>
</head>
<body>
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
20
|
<table>
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
21
|
<tr>
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
22
23
24
25
26
|
<th>Address<br />(Dec)</th>
<th>Address<br />(Hex)</th>
<th>Value<br />(Hex)</th>
<th>Value<br />(Dec)</th>
<th>Description</th>
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
27
28
29
|
</tr>
{{.Table_Control}}
</table>
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
30
|
<table>
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
31
|
<tr>
|
222bf65b5
김태훈
프로토콜 변경 대응 수정
|
32
33
34
35
36
|
<th>Address<br />(Dec)</th>
<th>Address<br />(Hex)</th>
<th>Value<br />(Hex)</th>
<th>Value<br />(Dec)</th>
<th>Description</th>
|
fd05639c9
김태훈
웹으로 모드버스 테이블 보여주는...
|
37
38
39
40
41
|
</tr>
{{.Table_State}}
</table>
</body>
</html>
|