thymeleaf CSS内联表达式前端css里面怎么获取后台模板值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf CSS内联表达式前端css里面怎么获取后台模板值相关的知识,希望对你有一定的参考价值。

参考技术A

可以使用如下方法获取后台模板值

<style th:inline="css">    .[[$classname]]      text-align: [[$align]];    </style>

参考 在线助手-thymeleaf CSS内联表达式前端css里面怎么获取后台模板值

前端基础面试题之语义化+块级元素和内联元素+css布局盒模型

HTML语义化


块状元素和内联元素

CSS盒模型





BFC理解与应用



对于 B F C \\color#FF0000BFC BFC的布局方式,会在下一篇博客中详细进行介绍,这个知识点在CSS布局中还是很重要的。https://blog.csdn.net/u012396955/article/details/111315837

圣杯布局和双飞翼布局



圣 杯 布 局 : \\color#B22222圣杯布局:

<style type="text/css">
        body 
            min-width: 550px;
        
        #header 
            text-align: center;
            background-color: #f1f1f1;
        
        #container 
            padding-left: 200px;
            padding-right: 150px;
        
        #container .column 
            float: left;
        
        #center 
            background-color: #ccc;
            width: 100%;
        
        #left 
            position: relative;
            background-color: yellow;
            width: 200px;
            margin-left: -100%;
            right: 200px;
        
        #right 
            background-color: red;
            width: 150px;
            margin-right: -150px;
        
        #footer 
            text-align: center;
            background-color: #f1f1f1;
        
        /* 手写 clearfix */
        .clearfix:after 
            content: '';
            display: table;
            clear: both;
        
    </style>
<body>
    <div id="header">this is header</div>
    <div id="container" class="clearfix">
        <div id="center" class="column">this is center</div>
        <div id="left" class="column">this is left</div>
        <div id="right" class="column">this is right</div>
    </div>
    <div id="footer">this is footer</div>
</body>


双 飞 翼 布 局 : \\color#B22222双飞翼布局:

<style type="text/css">
        body 
            min-width: 550px;
        
        .col 
            float: left;
        
        #main 
            width: 100%;
            height: 200px;
            background-color: #ccc;
        
        #main-wrap 
            margin: 0 190px 0 190px;
        
        #left 
            width: 190px;
            height: 200px;
            background-color: #0000FF;
            margin-left: -100%;
        
        #right 
            width: 190px;
            height: 200px;
            background-color: #FF0000;
            margin-left: -190px;
        
    </style>
<body>
    <div id="main" class="col">
        <div id="main-wrap">
            this is main
        </div>
    </div>
    <div id="left" class="col">
        this is left
    </div>
    <div id="right" class="col">
        this is right
    </div>
</body>

flex布局


<style type="text/css">
        .box 
            width: 200px;
            height: 200px;
            border: 2px solid #ccc;
            border-radius: 10px;
            padding: 20px;

            display: flex;
            justify-content: space-between;
        
        .item 
            display: block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #666;
        
        .item:nth-child(2) 
            align-self: center;
        
        .item:nth-child(3) 
            align-self: flex-end;
        

    </style>
<div class="box">
        <span class="item"></span>
        <span class="item"></span>
        <span class="item"></span>
    </div>

以上是关于thymeleaf CSS内联表达式前端css里面怎么获取后台模板值的主要内容,如果未能解决你的问题,请参考以下文章

前端学习(十三):CSS盒子模型

从 Thymeleaf 中的模型对象设置 CSS 变量

前端04 /css简绍/css选择器

CSS的三种样式,有一种你肯定不知道

前端学习-基础部分-css

前端工程师手册css会阻塞页面dom解析吗?javascript呢?