I want to put some buttons onto the logo picture. I set first button and try to position it on the top right corner of the logo picture... Picture has width 100% and picture should be 100x100, but when do padding, the image is multiplying....
<header>
<button id="about" onclick="location.href='#';"> </button>
<img id="logo" src="Content/images/logo.jpg" /> <br/>
</header>
#about {
position: absolute;
background-image: url('Content/images/about.png');
height: 100px;
width: 100px;
}