haml - 如何在链接中包含2个div?

时间:2016-08-10 11:12:14

标签: html haml

我试图在链接中包含2个div但第二个div被忽略。知道如何使用haml在链接中添加2个div吗?

ll

我收到了这个输出:

= link_to '#' do
 .div_one
   Content div One
 .div_two
   Content div Two

1 个答案:

答案 0 :(得分:1)

你可以这样做:

%a{:href => "#"}
  .div_one Content div One
  .div_two Content div Two

给出输出

<a href="#">
  <div class="div_one">Content div One</div>
  <div class="div_two">Content div Two</div>
</a>

但是我没有合适的编译器并且已经使用https://haml2erb.org/所以我现在无法100%验证。