Why TR not taking style?

后端 未结 3 1998
北海茫月
北海茫月 2020-12-28 12:51

CSS

table tr {border-bottom:1px solid #008999}

HTML


   <         
3条回答
  •  执念已碎
    2020-12-28 13:35

    Try giving

    table tr th {border-bottom:1px solid #008999}
    

    Then you can use

    table { border-collapse: collapse; }
    table tr {border-bottom:1px solid #008999; }
    

    See The collapsing border model

提交回复
热议问题