嵌入式Gists外的黑色边框?

时间:2015-04-14 13:44:50

标签: css

blog上的嵌入式Gists在脚本外部有黑色边框。

我通过开发人员工具检查了元素,但没有发现黑色边框。

如何摆脱这个黑色边框?

2 个答案:

答案 0 :(得分:2)

你在CSS的某个地方<td>有边框,请尝试以下内容为Gists休息。

.gist .line-numbers,
.gist .line-data {
    border: 0;
}

答案 1 :(得分:1)

您的表格单元格在页面的<style>部分有一个边框(第203行)

td {
  padding: 0.5em 0.75em;
  border: solid 1px black; /* remove this */
}