前端
韩小扬
这个作者很懒,什么都没留下…
展开
-
thymeleaf公共页面元素抽取
1、抽取公共片段 <div th:fragment="copy"> © 2011 The Good Thymes Virtual Grocery </div> 2、引入公共片段 <div th:insert="~{footer :: copy}"></div> ~{templatename::selector}:模板名::选择...转载 2020-02-15 13:05:24 · 211 阅读 · 0 评论 -
css居中div的几种常用方法
在开发过程中,很多需求需要我们居中一个div,比如html文档流当中的一块div,比如弹出层内容部分这种脱离了文档流等。不同的情况有不同的居中方式,接下来就分享下一下几种常用的居中方式。 1.text-align:center方式 代码: <div class="center"> <span class="center_text"> 123 <...转载 2020-02-01 10:44:31 · 827 阅读 · 0 评论