我正在尝试为我的表格获取圆形单元格,但我无法执行css,因为border-radius在我的代码中不起作用,即
表
{
边界间距:10px;
边界崩溃:分开;
}
^(?!\s)(?!.*\s\s)[\x20-\x7F]{1,35}(?<!\s)$
这里我使用的是tcpdf和html
答案 0 :(得分:1)
为td的子元素提供border-radius
。
td b{
border: solid 1px #ccc;
border-radius: 50%;
display:block;
padding: 10px;
width:100px;
height:100px;
}
&#13;
<table>
<tr>
<tr>
<td style=\"border:1px solid black; background-color:#FE0000; color:white; text-align:center;\"><b>xxxxxxxxxxx</b></td>
<td style=\"border:1px solid black; background-color:#F69546; color:white; text-align:center;\"><b>xxxxxxxxxxx</b></td>
<td style=\"border:1px solid black; background-color:#92D14F; color:white; text-align:center;\"><b>xxxxxxxxx</b></td>
</tr>
</table>
&#13;
答案 1 :(得分:0)
php
' '
html
单引号attributes
与" "
使用双引号
更新:添加了table
开始和结束标记以及tr
结束标记
将$html
更改为
$html ="
<table>
<tr>
<td style=\"border:1px solid black; background-color:#FE0000; color:white; text-align:center;\"><b>xxxxxxxxxxx</b></td>
<td style=\"border:1px solid black; background-color:#F69546; color:white; text-align:center;\"><b>xxxxxxxxxxx</b></td>
<td style=\"border:1px solid black; background-color:#92D14F; color:white; text-align:center;\"><b>xxxxxxxxx</b></td>
</tr>
</table>
";
到
$html ='
<table>
<tr>
<td style="border:1px solid black; background-color:#FE0000; color:white; text-align:center;"><b>xxxxxxxxxxx</b></td>
<td style="border:1px solid black; background-color:#F69546; color:white; text-align:center;"><b>xxxxxxxxxxx</b></td>
<td style="border:1px solid black; background-color:#92D14F; color:white; text-align:center;"><b>xxxxxxxxx</b></td>
</tr>
</table>
';
如果尚未包含css,也尝试使用它来回显css。
$html = "table { border-spacing: 10px; border-collapse: seperate; }";
或
$html = "td b { border-spacing: 10px; border-collapse: seperate; }";
答案 2 :(得分:0)
TCPDF的CSS支持非常有限。它不支持所有属性。
目前,仅支持以下CSS属性:
字体家庭 字体大小 字体重量 字体样式 颜色 背景颜色 文字修饰 宽度 高度 文本对齐