I successfully generated a speech bubble as an absolutely positioned element that I intend to have placed outside of its wrapper.
While I was able to correctly position the div, I'm facing an issue where the content outside of the div is getting clipped.
I attempted to resolve this issue by using the overflow:visible
property, but it doesn't seem to be achieving the desired result. Any suggestions?
CSS
#bubble{
width:201px;
height:189px;
position:absolute;
left:-87px;
bottom:0;
z-index: 99;
overflow:visible;
}
HTML
<!-- Speech bubble-->
<div id="bubble"><img src="images/hire_me_bubble.png"
alt="Hire me" />
</div>
Live site - Take a look at the bubble in question located in the lower contact section