What are the default CSS styling of heading tags? (H1, h2, h3, h4, h5)

前端 未结 4 1641
小蘑菇
小蘑菇 2021-02-07 08:49

In HTML, headings are denoted with (1,2,3,4,5,6) tag.

My question is regarding following HTML code:

4条回答
  •  攒了一身酷
    2021-02-07 09:47

    Question: is there predefined property for same in CSS?

    No

    You can try like this:

    h3{ 
       display: block; 
    }
    
    h3 {
       font-size: /*Font size similar to h3*/ ;
    }
    

提交回复
热议问题