2

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!

2 Answers2

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