How do you do rounded corners with CSS on the iPhone in a UIWebView? -
does not seem to work for me, maybe I'm doing it wrong
Answer Yes it works, I was doing it wrong :) If you have UIWebView (or even on a regular web page) People can see the iPhone safari), you can do this:
div {-webkit-border-radius: 10px;}
If you want to make a specific corner, you can do this
Div {-webkit-border-top-right-radius: 10px;}
Comments
Post a Comment