我想创建一个将重塑元素的类。我不确定它是否可能只有纯粹的CSS。但是图像元素的类会将图像转换为下面给出的形状。
<style>
.reshape{
//what to put inside here?
}
</style>
<img class='reshape'>
如果使用纯css是不可能的,那么还有其他替代解决方案吗?提前谢谢。
答案 0 :(得分:2)
您可以从试验border-radius开始:
.reshape{
border-radius:30px;
overflow:hidden;
}