如何为我的桌子获取圆形单元格

时间:2016-02-05 09:44:58

标签: html css tcpdf

我正在尝试为我的表格获取圆形单元格,但我无法执行css,因为border-radius在我的代码中不起作用,即          表         {         边界间距:10px;         边界崩溃:分开;
        }            

^(?!\s)(?!.*\s\s)[\x20-\x7F]{1,35}(?<!\s)$

这里我使用的是tcpdf和html

3 个答案:

答案 0 :(得分:1)

为td的子元素提供border-radius



td b{
  border: solid 1px #ccc;
  border-radius: 50%;
  display:block;
  padding: 10px;
  width:100px;
  height:100px;
}

<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;
&#13;
&#13;

答案 1 :(得分:0)

php ' '

html单引号attributes" "使用双引号

请参阅:LINK (SO Question)

更新:添加了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属性:

字体家庭 字体大小 字体重量 字体样式 颜色 背景颜色 文字修饰 宽度 高度 文本对齐