李毛毛的技术专栏 An interesting software testing engineer

jekyll博客中markdown表格不显示

2020-05-02


将下面代码加入到_layouts对应的页面,显示markdown表格

<style>
  table{
    border-left:1px solid #000000;border-top:1px solid #000000;
    width: 100%;
    word-wrap:break-word; word-break:break-all;
  }
  table th{
  text-align:center;
  }
  table th,td{
    border-right:1px solid #000000;border-bottom:1px solid #000000;
  }
</style>


Comments

Content