I've been trying to get rid of the image border using different methods
img {
border: 0px;
}
I even attempted to remove it from the browser console with this code border: none !important
This is what my html code looks like
<div id="startDiv" style="font-size: 40;margin-left: 166px;margin-top: 207px" >
<img onclick="startApplet();" id="start" />
</div>
I added the following in a style tag within the head section
#start {
width: 150px;
height: 150px;
background: url(images/start.png) 0 150px;
border-style: none;
}