I have a question regarding my CSS code that creates radius borders. When I initially load the page, only two of the four radius borders are visible. However, when I resize the browser window, all four radius borders become visible. Can someone explain why this is happening?
Here is my CSS and HTML code:
iframe, #wbf{
border-bottom-left-radius: 23px !important;
border-bottom-right-radius: 23px !important;
border-top-left-radius: 23px !important;
border-top-right-radius: 23px !important;
}
<div class="col-md-4" id="widget">
<iframe id="wbf" src="https://www.facebook.com/plugins/page.php?href=https%3A%2F%2Fwww.facebook.com%2FCl%25C3%25ADnica-Materno-Infantil-Casa-Del-Ni%25C3%25B1o-SA-399571326824453%2F&tabs=timeline&width=340&height=500&small_header=false&adapt_container_width=true&hide_cover=false&show_facepile=true&appId" width="100%" height="393" style="border:none;overflow:hidden;padding-top:0.5%" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
</div>