line break
not rendering as expected

前端 未结 4 1992
死守一世寂寞
死守一世寂寞 2021-01-21 00:01

Any idea why there\'s a thin grey line above my green


and how to get rid of it?

Thanks

https://jsfiddle.net/Lc7gym88/

hr {
  border         


        
4条回答
  •  温柔的废话
    2021-01-21 00:32

    Removed default


    border and uses height and background

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

    Example : https://jsfiddle.net/Lc7gym88/1/

提交回复
热议问题