Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于我的生活,我无法弄清楚为什么什么都不会集中。
这张图片比我能更好地解释我想要什么。
我想在不改变汉字周围出现的方式的情况下将所有字段居中(由于某种原因,{{Expression}}当我尝试居中时,该字段不断翻转。
{{Expression}}
http://pastebin.com/PqEN9xMT
在您的模板中,用 div 包装 Expression 字段,给 div 一个类,然后使用 css 样式将其居中。
如果您想要主窗口的绝对中心,请尝试:
正面模板:
<div class='center-me'> {Front} </div>
造型:
.center-me { width: 100px; height: 100px; position: absolute; top:0; bottom: 0; left: 0; right: 0; margin: auto; }