Horizontal rule/line beneath each

heading in CSS

后端 未结 6 703
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-05 09:01

I am trying to place a 100% horizontal line (rule) automatically beneath every instance of an

 

header tag using CSS.

Example

6条回答
  •  天涯浪人
    2021-02-05 09:49

    Why not just use border-bottom? You can remove the span then too..

    HTML:

    Introduction

    CSS:

    h1 {
      width:100%;
      border-bottom: solid 1px #666;
    }
    

提交回复
热议问题