thymeleaf CSS内联表达式前端css里面怎么获取后台模板值
theamleaf CSS内联表达式和js内联表达式和取值类似
<style th:inline="css"> ... </style>
假设我们有两个变量设置为两个不同的String值:
classname = ‘vue1 view1’ align = ‘center’
使用如下表达式
<style th:inline="css"> .[[${classname}]] { text-align: [[${align}]]; } </style>
结果将是
<style th:inline="css"> .vue1 view1{ text-align: center; } </style> 1
下面给出一个设置theamleaf CSS设置背景的实例
.backGroundImg{ /*background-image: url("http://www.it399.com");*/ background-image: url("[[${myURL.mSrcURL}]]/imgs/tools/zuji/zuji_map_bg.png"); }
相关推荐
丽丽 2020-10-30
visionzheng 2020-04-20
86384798 2020-04-07
85291545 2020-03-26
东哥笔记 2020-02-29
goodyatou 2020-01-29
GechangLiu 2020-01-26
ffujbcf 2019-12-05
空间数据库是 2019-11-18
yangjinpingc 2018-05-20
MicroBoy 2017-03-30
努力的zhiyi 2017-01-17
姜依涛 2019-06-27
jackuseradmin 2019-06-27
newstudent0 2019-06-27
LeeEmmmm 2019-06-21
hanyueqi 2017-06-14
稀土 2018-05-11