I am having trouble with a container div, border-radius, and overflow.
(For anyone on hubspot, the following question is how to move the footer content outside of the container div)
NOTE: I am stuck inside a CMS template and cannot change the format or content of the HTML. It must rely solely on CSS
The following is the general layout of the website
<div id="container">
<div id="header">...</div>
<div id="content">...</div>
<div id="footer">...</div>
</div>
the css that is applied is the following:
#container{
-moz-border-radius: 15px !important;
-webkit-border-radius: 15px !important;
-khtml-border-radius: 15px !important;
border-radius: 15px !important;
overflow: hidden;
}
if I change the overflow:hidden to overflow:visible the border disappears (at least on Chrome). Does anyone know why this happens and whether there is a way around it?
overflow:hiddeneludes me though