是否可以使用 vmlv:rect
和的技术来嵌套背景图像v:fill
?似乎嵌套的 v:fill 也会尝试填充第一个声明的v:rect
,这完全打乱了我的布局
我正在尝试实现的示例(通过基础使用墨迹模板语言)
<!-- Top level BG -->
<td background="https://i.imgur.com/YJOX1PC.png" bgcolor="#7bceeb" width="120" valign="top">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:120px;">
<v:fill type="tile" src="https://i.imgur.com/YJOX1PC.png" color="#7bceeb" />
<v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
<![endif]-->
<div>
<row>
<columns>
<!-- Nested BG -->
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false" style="width:120px;">
<v:fill type="tile" src="https://i.imgur.com/YJOX1PC.png" color="#7bceeb" />
<v:textbox style="mso-fit-shape-to-text:true" inset="0,0,0,0">
<![endif]-->
<div>
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</columns>
</row>
<columns>
<!-- Nested BG -->
<!-- ... -->
</columns>
</row>
</div>
<!--[if gte mso 9]>
</v:textbox>
</v:rect>
<![endif]-->
</td>