CSS片段中的序列}}
被解析为Twig 分隔符。
<style>
@media (touch-enabled),
(-webkit-touch-enabled),
(-moz-touch-enabled),
(-o-touch-enabled),
(-ms-touch-enabled),
(modernizr){#touch{top:9px;position:absolute}}
</style>
我该怎么做才能克服这个问题?
答案 0 :(得分:0)
我钻研了文档,最后找到了一个不错的解决方案:
{% raw %}(modernizr){#touch{top:9px;position:absolute}}{% endraw %}
这样做会让Twig lexer“开心”,我的模板问题就一劳永逸了。