I currently have a div structured like this:
<div class="panel" style="width: 100%; height: 40px; ">
<asp:Panel runat="server" ID="Panel1" HorizontalAlign="Center" >
<asp:Image id="Image2" runat="server"src="../../_images/arrow.jpg" HorizontalAlign="middle" style="width: 30%; height: 40px; " />
</asp:Panel>
</div>
<div class="panel" style="width: 100%; height: 160px;">
I am interested in creating four similar divs, all referencing the same image. I am curious if there is a way to achieve this using CSS, as I would prefer not to duplicate the image code for each div.