I have not enough reputation to post images. I want to make a container like this but i cant google something like that http://postimg.org/image/dibumt2zb/. thank you all!
Asked
Active
Viewed 43 times
2
-
1What's your approach? Did you try anything before asking apart from googleing it? – jkalden Oct 21 '15 at 08:45
-
Possible duplicate of [Cross-browser curved borders](http://stackoverflow.com/questions/2795097/cross-browser-curved-borders) – ivan_pozdeev Oct 21 '15 at 15:03
2 Answers
1
Try in the css:
border-radius: 10px;
You can also make:
border-radius: 50%;
if you want a circle.

Viktor Maksimov
- 1,465
- 1
- 10
- 11
0
Look here:
.someclass
{
width:200px;
height:200px;
display:inline-block;
border:5px solid #000;
border-radius:10px;
}
<div class="someclass"> </div>

om_jaipur
- 2,176
- 4
- 30
- 54