为div元素创建不均匀的边界

时间:2016-01-22 18:15:47

标签: html css

我想创建一个将重塑元素的类。我不确定它是否可能只有纯粹的CSS。但是图像元素的类会将图像转换为下面给出的形状。

<style>
.reshape{
//what to put inside here?
}
</style>
<img class='reshape'>

The shape required

如果使用纯css是不可能的,那么还有其他替代解决方案吗?提前谢谢。

1 个答案:

答案 0 :(得分:2)

您可以从试验border-radius开始:

.reshape{
  border-radius:30px;
  overflow:hidden;
}