Bootstrap 3: Using img-circle, how to get circle from non-square image?

前端 未结 8 1381
生来不讨喜
生来不讨喜 2021-01-31 16:16

I have rectangular, not necessarily square images.

Using Bootstrap\'s img-circle, I\'d like to get circular crops, <

8条回答
  •  温柔的废话
    2021-01-31 16:27

    use this in css

    .logo-center{
      border:inherit 8px #000000;
      -moz-border-radius-topleft: 75px;
      -moz-border-radius-topright:75px;
      -moz-border-radius-bottomleft:75px;
      -moz-border-radius-bottomright:75px;
      -webkit-border-top-left-radius:75px;
      -webkit-border-top-right-radius:75px;
      -webkit-border-bottom-left-radius:75px;
      -webkit-border-bottom-right-radius:75px;
      border-top-left-radius:75px;
      border-top-right-radius:75px;
      border-bottom-left-radius:75px;
      border-bottom-right-radius:75px;
    }
    
    
    

提交回复
热议问题