After exhausting all recommendations to fix the rounded corners problem, I am seeking help. The issue is that it displays correctly on Firefox but not on Safari or Chrome. Below is my code:
#sidebar4_content{
margin: 0 auto;
float: right;
width:80%;
background-color: #F2F2F2;
margin-top: 130px;
height: 600px;
border: solid 5px #1C1C1C;
border-top-left-radius:90%;
border-bottom-left-radius:90%;
-moz-border-radius-bottomleft: 90%;
-moz-border-radius-topleft: 90%;
-webkit-border-top-left-radius: 90%;
-webkit-border-bottom-left-radius: 90%;
}
Trying various combinations like using "px" instead of "%" and adjusting the format to border-radius: 0px 90px 90px 0px; as well as adding comments as suggested by some, has not yielded any results. The strange part is that the corners are indeed rounded in Safari and Chrome but at a fixed size of 10px on all sides, despite specifying different values. I appreciate any assistance!