本文介绍了如何使haml中的文本和变量显示在同一行上?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有此代码,并且希望将其读取为同一行上的Volunteers Needed:10(event.numberofvolunteers值).不使用CSS怎么办?我没有找到解决此问题的具体帖子.

I have this code and I want it to read as Volunteers Needed: 10 (event.numberofvolunteers value) on the same line. How can I do this without using css? I haven't found a specific post addressing this issue.

%td Volunteers Needed:
  = event.numberofvolunteers

推荐答案

尝试一下:

%td= "Volunteers Needed: #{event.numberofvolunteers}"

这篇关于如何使haml中的文本和变量显示在同一行上?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 14:33