回答編集履歴

3

edit

2020/09/08 10:23

投稿

m.ts10806
m.ts10806

スコア80875

test CHANGED
@@ -20,12 +20,4 @@
20
20
 
21
21
 
22
22
 
23
- インラインスタイルはあまり望ましくないのでクラスにしましたけど、
23
+ インラインスタイルはあまり望ましくないのでクラスにしました
24
-
25
- 案外これでもいけるんじゃないかと思ってみたり(未検証)
26
-
27
- ```Thymeleaf
28
-
29
- <tr th:each="list : ${list}" th:style="${list.eFlg =='1'} ? 'background-color: #00ff00;'">
30
-
31
- ```

2

追記

2020/09/08 10:23

投稿

m.ts10806
m.ts10806

スコア80875

test CHANGED
@@ -10,10 +10,22 @@
10
10
 
11
11
  }
12
12
 
13
-
13
+ ```
14
14
 
15
15
  ```Thymeleaf
16
16
 
17
17
  <tr th:each="list : ${list}" th:classappend="${list.eFlg =='1'} ? 'bg-green'">
18
18
 
19
19
  ```
20
+
21
+
22
+
23
+ インラインスタイルはあまり望ましくないのでクラスにしましたけど、
24
+
25
+ 案外これでもいけるんじゃないかと思ってみたり(未検証)
26
+
27
+ ```Thymeleaf
28
+
29
+ <tr th:each="list : ${list}" th:style="${list.eFlg =='1'} ? 'background-color: #00ff00;'">
30
+
31
+ ```

1

修正

2020/09/08 10:20

投稿

m.ts10806
m.ts10806

スコア80875

test CHANGED
@@ -1 +1,19 @@
1
1
  CSSのクラス作ってclassappendのほうが良いように思います。
2
+
3
+
4
+
5
+ ```css
6
+
7
+ tr.bg-green{
8
+
9
+ background-color: #00ff00;
10
+
11
+ }
12
+
13
+
14
+
15
+ ```Thymeleaf
16
+
17
+ <tr th:each="list : ${list}" th:classappend="${list.eFlg =='1'} ? 'bg-green'">
18
+
19
+ ```