使用属性mixin玉的内联样式宽度

时间:2018-09-03 14:58:14

标签: email pug html-email mixins

我正在按照link中提供的答案尝试使用玉器mixins进行内联样式设计,但是它不能按预期的方式工作。

我在用这个玉:

mixin centerImg(margin,imgWidth,imgWidthpx,imgId)
table(border="0", cellpadding="0", cellspacing="0", width="640")
    tr
        td(width=margin)
        td(width=imgWidth)
            a.antiHand(href='#', style='cursor: none !important; pointer-events: none; border-style: none; border: none; border-color: transparent;')
                img(alt="", style="width:#{imgWidth};max-width:#{imgWidthpx};display:block;margin:0")(width=imgWidth)(src=imgId)
        td(width=margin)

+centerImg(200,240,"240px",'https://media.giphy.com/media/SzzNGHZWHCBqw/giphy.gif')

这就是我得到的:

<table border="0" cellpadding="0" cellspacing="0" width="640">
          <tr>
            <td width="200"></td>
            <td width="240"><a class="antiHand" href="#" style="cursor: none !important; pointer-events: none; border-style: none; border: none; border-color: transparent;"><img alt="" style="width:#{imgWidth};max-width:#{imgWidthpx};display:block;margin:0" width="240" src="https://media.giphy.com/media/SzzNGHZWHCBqw/giphy.gif"/></a></td>
            <td width="200"></td>
          </tr>
        </table>

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

此代码:

style="width:#{imgWidth};max-width:#{imgWidthpx};display:block;margin:0"

应该这样更改:

style=`width:${imgWidth};max-width:${imgWidthpx};display:block;margin:0`

我认为这可行!