我有以下 gwt html 模板,以便在我的项目中设置面板的标题。
@Template("<div>{0}<span style=\"font-size: 11px;\">{1}</span></div>")
SafeHtml method1(String title,String subtitle);
例如,如果 title="Hello" 和 subtitle="World" 则上述格式的输出文本为 -> HelloWorld
我希望上述格式的输出为“Hello”和“World”之间的空格-> Hello World
当我们在 HTML 中使用 ' ' 时,如何在上述 div 之间插入一个空格?
因为这是一个动态打印标题的模板,所以我不能使用 css 作为这个标题。我尝试使用
&
但它不起作用。