css 设置圆角

CSS3 圆角(border-radius)

  • -moz(例如 -moz-border-radius)用于Firefox
  • -webkit(例如:-webkit-border-radius)用于Safari和Chrome。

 example:

  <span class="pull-left col-xs-3 user-face">

<img class="media-object img-thumbnail" ng-src="${ctx!}/images/student/card/default_40.png">

</span>

  .user-face img{
      -moz-border-radius:50%;
      -webkit-border-radius: 50%;
      border-radius: 50%;
  }

效果:

css 设置圆角

支持性:

css 设置圆角

上一篇:15天玩转redis —— 第九篇 发布/订阅模式


下一篇:Git:fatal: Authentication failed