css布局实现卡片边角丝带装饰效果代码
代码语言:html
所属分类:布局界面
代码描述:css布局实现卡片边角丝带装饰效果代码,左上角、左下角、右上角、右下角丝带效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> @import url(https://fonts.googleapis.com/css?family=Lato:700); body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: #f0f0f0; } .box { position: relative; max-width: 600px; width: 90%; height: 400px; background: #fff; box-shadow: 0 0 15px rgba(0,0,0,.1); } /* common */ .ribbon { width: 150px; height: 150px; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0