Is there a way to position my photo on the same level as a div and have it overlap slightly?
<div id='triangle-topleft'>
<img id="photo" src="photo.png">
</div>
#triangle-topleft {
width: 0;
height: 0;
border-top: 350px solid #66CCFF;
border-right: 350px solid transparent;
position: absolute;
left: 0%;
}
#photo {
position: absolute;
left: 0%;
float: left;
}