How to make new heading tag numbers such as h7, h8, etc.?

后端 未结 6 657
耶瑟儿~
耶瑟儿~ 2020-12-11 06:06

How can I make another heading in HTML?

I have used

,

,

,

,

6条回答
  •  旧时难觅i
    2020-12-11 06:32

    You can declare this in your stylesheet

    h7, h8, h9 { /* You can just go on adding headings */
       display: block; /* Because this is block level element */
    }
    
    h7 {
       font-size: /*Whatever */ ;
    }
    
    h8 {
       font-size: /*Whatever */ ;
    }
    

    But I would suggest you not to do so, as it doesn't carry any semantic meaning, also it will be bad from SEO point of view

    Also take a look at html5shiv, just add the elements you want in the script

提交回复
热议问题