Skip to content Skip to sidebar Skip to footer

Align Text Vertically Center Of H2 Tag With A Background

I have a h2 tag that has a background image as an icon. I want to align the text vertically within the h2 tag but it doesn't work. I have tried using the display: table-cell; but t

Solution 1:

Change your

.FeatureRow h2 , add line-height

css as follows

.FeatureRowh2{
background-repeat: no-repeat;
padding-left: 65px;
font-size: 22px;
height: auto;
min-height: 60px;
color: #3F92ED;
line-height:2.5em;
}

Solution 2:

In .SpeechBg, .PinBg, and .ViewBg, add line-height: ##px;, where ## is the height (in px) of the background images.

Post a Comment for "Align Text Vertically Center Of H2 Tag With A Background"