Google-docs – How to remove horizontal page-break line (dotted and bold) that appear on tables in Google Docs

cssgoogle docsgoogle-workspace

Background

I used a method described in this answer by downloading the Chrome plugin User JavaScript & CSS by adding the following code:

.kix-page-compact::before{
    border-top: none;
}

As a result, I was able to remove this horizontal, dotted line that you can see below:

enter image description here

Problem

However, the bold line, which splits table rows in random places, still appears:

enter image description here

What CSS should I use to remove this?

Best Answer