css实现图片斜切倾斜效果
代码语言:html
所属分类:布局界面
代码描述:css实现图片斜切倾斜效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> body { text-align: center; padding: 30px; background: #f8f4f2; font-family: Arial; } .a-box { display: inline-block; width: 240px; text-align: center; } .img-container { height: 230px; width: 200px; overflow: hidden; border-radius: 0px 0px 20px 20px; display: inline-block; } .img-container img { transform: skew(0deg, -13deg); height: 250px; margin: -35px 0px 0px -70px; } .inner-skew { display: inline-block; border-radius: 20px; overflow: hidden; padding: 0px; transform: skew(0deg, 13deg); font-size: 0px; margin: 30px 0px 0px 0px; background: #c8c2c2; height: 250px; width: 200px; } .text-container { .........完整代码请登录后点击上方下载按钮下载查看
网友评论0