Vertically align Bootstrap badge inside heading

后端 未结 2 1719
说谎
说谎 2020-12-06 09:05

When I use a Bootstrap badge inside of heading such as h1,h2,h3 the vertical alignment is off. The badge ali

2条回答
  •  猫巷女王i
    2020-12-06 09:55

    Always hated this problem.

    A little hacky but this works:

    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.4em; }
    h1,h2,h3 {
        vertical-align:middle;
    }
    
      h1>.badge, h2>.badge, h3>.badge {
        vertical-align:middle;
        margin-top: -0.5em;
    }
    

    Defined the heading font-sizes for demo purposes

提交回复
热议问题