2

I am using an image instead of an icon for my collapsible. What i want is that the text should align center to the image. Right now it is appearing like this |_ with underscore as the text and '|' as the image. I want it to be like this: |-

Here is my code:

<div data-role="collapsible" data-collapsed="false">
    <h4><img src="today_calendar.png" style="height: 80px;"> Today's Events </h4>
imbondbaby
  • 6,351
  • 3
  • 21
  • 54
user3760741
  • 163
  • 1
  • 1
  • 10

1 Answers1

0

Try this:

img{
    vertical-align:middle;
}

JSFiddle Demo

imbondbaby
  • 6,351
  • 3
  • 21
  • 54