图片圆角

正常效果

圆角效果

圆形效果


CLASS定义分别为:

圆角:rounded

圆形:rounded-circle


用style代码实现圆角
<style>
.demo_img {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
</style>