css实现网格多种布局效果代码
代码语言:html
所属分类:布局界面
代码描述:css实现网格多种布局效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> * { box-sizing: border-box; } span { background: #fff; padding: 1rem; border-radius: 7px; box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.13); height: 30vh; display: grid; grid-gap: 0.5rem; } span b { background-color: #7B86F5; border-radius: 4px; display: grid; place-items: center; color: #fff; font-size: 1.5rem; } span.template-2col { grid-template-columns: repeat(2, 1fr); } span.template-3col { grid-template-columns: repeat(3, 1fr); } span.template-4up { grid-template: repeat(2, 1fr)/repeat(2, 1fr); } span.template-sidebar--left { grid-template: "sidebar mainA" "sidebar mainB"; } span.template-sidebar--left > :nth-child(1) { grid-area: sidebar; } span.template-sidebar--right { grid-template: "mainA sidebar" "mainB sidebar"; } span.template-sidebar--right > :nth-child(3) { grid-area: sidebar; } body { background: #f9f9f9; .........完整代码请登录后点击上方下载按钮下载查看
网友评论0