だから私がやろうとしているのは、画像の上に直接ではなく、画像の間に線が均等になるようにすることです。問題は、画像の周りにマージンを使用していることにあります。関連する css と html:
#infobox_picture {
margin-top: 15px;
margin-right: auto;
margin-bottom: 15px;
margin-left: 10px;
clear: both;
padding-bottom: 14px;
background-position: center bottom;
background-repeat: no-repeat;
height: 90px;
}
<div id="infobox_picture">
<img src="images/image1.png" width="91" height="90" align="left" class="frame-img">
</div>
<div id="infobox_picture">
<hr >
<img src="images/image1.png" width="91" height="90" align="left" class="frame-img">
</div>
<div id="infobox_picture">
<hr />
<img src="images/image1.png" width="91" height="90" align="left" class="frame-img">
</div>