HTML   发布时间:2022-04-14  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了html – 使用CSS自定义圆形图像大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想获得一个自定义形状的图像,如下所示:

#oval-shape {
  width: 200px;
  height: 100px;
  BACkground: blue;
  -moz-border-radius: 100px / 50px;
  -webkit-border-radius: 100px / 50px;
  border-radius: 100px / 50px;
}
<img id="oval-shape" src="http://d152j5tfobgaot.cloudfront.net/wp-content/uploads/2014/04/internship_yourstory.jpg">

DEMO

有什么想法,如果这是可能的?

解决方法

有一种方法可以用边框“伪造”这个形状:
body {
  BACkground: purple;
}
#oval-shape {
  display:block;
  margin: 20px auto;
  width: 200px;
  height: 200px;
  BACkground: none;
  border-radius: 100%;
  box-sizing: border-box;
  border-bottom: 50px solid transparent;
}
<img src="http://d152j5tfobgaot.cloudfront.net/wp-content/uploads/2014/04/internship_yourstory.jpg" id="oval-shape">

大佬总结

以上是大佬教程为你收集整理的html – 使用CSS自定义圆形图像全部内容,希望文章能够帮你解决html – 使用CSS自定义圆形图像所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。