However, as you can see, the corners on the right side of the image are not properly rounded, but the left side corners are. The CSS code looks like this: #articleimage { float:left; padding-right: 10px; padding-bottom: 1px; width: 400px; border-radius:20px; } I've determined that the issue is caused by the padding to the right, but I require
For me on iOS 5.1.1 on a iPhone 3GS I had to clear the styling of a search field and the set it to the style intended. input[type="search"] {-webkit-appearance: none; border-radius: 0 3px 3px 0;} Doing -webkit-border-radius: 0; alone did not clear the native styling. This was also for a webview on a native app.
Author’s note: The CSS equivalent to debugging with console.log is border: 1px solid red, and you should not feel bad about using it! Taking a deeper look at our code, we can observe the following border-radius calculation: css .dynamic-card { border-radius: max(0px, min(16px, (100% - 400px + 1px) * 9999)) / 16px; }hWH4.