KDB和HTML / CSS:如何以粗体显示表格第一栏的文字?

时间:2018-07-31 20:49:56

标签: html css formatting styles kdb

我正在使用KDB自动生成HTML输出。如果可能的话,我想避免用类标记html,因为我不想重做KDB代码。我尝试使用第一个孩子,但是没有用。还有其他建议吗?

KDB:

.util.html.t:{[t]
  if[not type[t] in 98 99h; :"Result not a table type!"];
  r:"<table cellSpacing='0' cellPadding='2'>";
  r:r,"<tr class='title'>";
  r:r,(,/){"<th>",x,"</th>"} each string cols t;
  r:r,"</tr>";
  r:r,(,/){"<tr>",((,/){
    if[type[x]=type[""]; x:`$x];
    if[not type[x]=type[enlist ""]; 
      x:string x;
      if[x like "*[0-9]%"; :"<td class=\"centeralignum\">",x,"</td>"];
      ];
    if[type[x]=type[enlist ""]; x:"," sv x];
    :"<td>",x,"</td>";
  } each x),"</tr>"} each 0!t;
  r:r,"</table>";
  :r;
  }

CSS:

     h3 { font-size: 16px; font-weight: bold; font-family: Calibri } 
     body { font-size: 12px; font-family: Calibri } 
     tr.title { background: lightblue repeat-x left bottom; font-weight: bold; border: 1px solid #000000;} 
     th {border: 1px solid black;}
     table { border: 1px solid black; border-collapse: collapse;}
     table td {border-left: 1px solid black; border-right: 1px solid black; width:125px;}
     table td:first-child {font-weight: bold;}
     td.centeralignum {text-align: center}

HTML

<table cellSpacing='0' cellPadding='2'><tr class='title'><th>name</th><th>a</th><th>b</th><th>c</th></tr><tr><td>bob</td><td>1</td><td>4</td><td>7</td></tr><tr><td>anna</td><td>2</td><td>5</td><td>8</td></tr><tr><td>ray</td><td>3</td><td>6</td><td>9</td></tr></table>

1 个答案:

答案 0 :(得分:0)

使用您提供的Firefox上的HTML和CSS为我工作。我什至切换了第一个孩子的属性,以确保它是造成它的原因。第一个孩子属性已经受支持很长时间了,但是值得检查here来查看您的浏览器是否支持它。

您可以进入浏览器中的开发人员工具,然后在检查器中选择元素以查看要应用的样式。如果它们被覆盖,它们将具有致命的作用,您也可以在开发人员工具中切换属性或添加新属性,以查看它们如何更改显示