纯css布局折叠便签纸效果
代码语言:html
所属分类:布局界面
代码描述:纯css布局折叠便签纸效果
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> html, body { background: #A8D9E7; margin: 0px; padding: 50px; } article.sticky { width: 200px; height: 200px; background: #FFDA65; margin: 25px; position: relative; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); } article.sticky header { height: 40px; width: 200px; background: #FFD248; } articl.........完整代码请登录后点击上方下载按钮下载查看
网友评论0