is it possible to do rounded CSS borders once the user has uploaded the image?
I want the css to make a rounded border like the image below:
I know you can do it with CSS3 but I am us开发者_如何学Going aspdotnetstorefront and it forces IE7 mode.
So any css needs to work with IE7.. :(
CSS3PIE would save your life
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: #EEFF99;
behavior: url(/PIE.htc);
You can use CSS3 PIE or CurvyCorners.
Photoshop can help you.
You cannot do any CSS3+ effects with IE7-
精彩评论