我的IDE(Spring Tools Suite)显示标签(a)的无效位置?

时间:2017-07-22 06:23:56

标签: html5 spring-boot thymeleaf

<div class="gifs container">
        <div class="row">
            <div th:each="gif : ${gifs}" class="col s12 l4">
                <a th:href="@{'/gif/' + ${gif.name}}">
                    <img th:src="@{'/gifs/' + ${gif.name} + '.gif'}" />
                  The problem occur in this line.  <a href="#" th:class="(${gif.favorite} ? 'un' : '') + 'mark favorite'"></a>

                 </a>

            </div>
        </div>
    </div>

我使用Spring Tools Suite IDE。我也用Thymeleaf和Spring。感谢。

0 个答案:

没有答案