I am facing an issue with setting the height of a logo within a footer div to match the height of the div itself. Using height: 100%
doesn't seem to work as expected.
Below is the relevant HTML:
<footer>
<img src="images/circle_logo.png" alt="GriffMUN 2014" title="GriffMUN 2014">
<p>Details here</p><p>More details here.</p>
</footer>
And relevant CSS:
footer {
color: #ffffff;
padding: 10px 10px 10px 10px;
text-align: right;
margin: 0 auto;
background-color: #000000;
font-size: small;
float: center;
}
footer img {
float:right;
height:100%;
}