0

I'm trying to get a image vertical aligned in the right.

.header {   
    background-color:white;
    width:auto;
    height:120px;
}

.title {
    vertical-align:center-right;    
}

<div class="header">
          <div class="title">

                    <a href="home.html"><img src="logo.png"/></a>

          </div><!--TITEL DIV-->
     </div><!--HEADER DIV-->

But the content in the 'title' div won't vertical align in the right center.

Bayern
  • 330
  • 3
  • 20

1 Answers1

0
.title{
    vertical-align: middle;
    text-align: right;
}
Draken
  • 3,134
  • 13
  • 34
  • 54
praveena
  • 222
  • 3
  • 6