我想在徽标图片上添加一些按钮。我设置了第一个按钮并尝试将其放置在徽标图片的右上角...图片的宽度为 100%,图片应为 100x100,但是当进行填充时,图片正在成倍增加...。
<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;
}