我正在使用 tcpdf,我必须显示圆圈,并且文本应该在 pdf 中合二为一。我尝试了下面的代码,但border-radius
没有工作
我的输出低于
这是我正在使用的代码
$html='<table width="100%" border="0" cellpadding="20px">
<tr>
<td><p><div style="width:15px;height:15px;background-color:#58d68d;border-radius:50px;margin-right:05px;"></div> Demo1</p></td>
<td><p><div style="width:15px;height:15px;background-color:#f5b041;border-radius:50px;margin-right:05px"></div> Demo2</p></td>
<td><p><div style="width:15px;height:15px;background-color:#e74c3c;border-radius:50px;margin-right:05px"></div> Demo3</p></td>
</tr>
</table>';