SAP Spartacus b2b 页面 banner 的grid layout设计
生活随笔
收集整理的這篇文章主要介紹了
SAP Spartacus b2b 页面 banner 的grid layout设计
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
如下圖所示:
每個banner里的a標簽,都應用了grid layout模型:
this element behaves like a block element and lays out its content according to the grid model.
In HTML programming, a block-level element is any element that starts a new line (e.g., paragraph) and uses the full width of the page or container. A block-level element can take up one line or multiple lines and has a line break before and after the element.
a標簽里包含三個元素:
grid layout模型的例子:
<!DOCTYPE html> <html> <head> <style> .item1 { grid-area: header; } .item2 { grid-area: menu; } .item3 { grid-area: main; } .item4 { grid-area: right; } .item5 { grid-area: footer; }.grid-container {display: grid;grid-template-areas:'header header header header header header''menu main main main right right''menu footer footer footer footer footer';grid-gap: 10px;background-color: #2196F3;padding: 10px; }.grid-container > div {background-color: rgba(255, 255, 255, 0.8);text-align: center;padding: 20px 0;font-size: 30px; } </style> </head> <body><h1>Grid Layout</h1><p>This grid layout contains six columns and three rows:</p><div class="grid-container"><div class="item1">Header</div><div class="item2">Menu</div><div class="item3">Main</div> <div class="item4">Right</div><div class="item5">Footer</div> </div></body> </html>最終效果:
更多Jerry的原創文章,盡在:“汪子熙”:
總結
以上是生活随笔為你收集整理的SAP Spartacus b2b 页面 banner 的grid layout设计的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 倩女幽魂善无畏结局是什么 倩女幽魂善无
- 下一篇: SAP Spartacus b2b 页面