你知道为什么我的绿色上面有一条很细的灰色线吗?怎么去掉它?
谢谢
https://jsfiddle.net/Lc7gym88/
html - 换行符<hr>未按预期呈现-LMLPHP

hr {
  border-bottom: 4px solid #469551;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px !important;
  height: 0;
}

最佳答案

替换这个

border-bottom: 4px solid #469551;

通过这个
 border: 4px solid #469551;

Here is the JSFiddle demo

10-06 12:24