在制作網(wǎng)頁時,CSS模板是非常重要的一環(huán)。這里將介紹如何用CSS制作一個冰淇淋模板。
首先,我們需要創(chuàng)建一個基礎HTML文件。代碼如下:
<html> <head> <title>CSS冰淇淋模板</title> <style> /* 在這里添加CSS代碼 */ </style> </head> <body> <header> <h1>我的冰淇淋模板</h1> </header> <main> <div class="cone"></div> <div class="scoop"></div> <div class="scoop"></div> <div class="scoop"></div> </main> <footer> <p>制作人:我</p> </footer> </body> </html>
接下來,我們將添加CSS代碼來制作冰淇淋模板。代碼如下:
/* 添加CSS代碼 */ body { background: #FFE4C4; /* 背景顏色 */ } header { background: #FFD700; /* 頭部背景顏色 */ text-align: center; /* 文字居中 */ padding: 20px 0; /* 上下內(nèi)邊距 */ } .cone { width: 0; height: 0; border-left: 50px solid transparent; border-right: 50px solid transparent; border-bottom: 100px solid #8B4513; border-radius: 50px; /* 冰淇淋筒 */ margin: 0 auto; /* 居中 */ } .scoop { width: 100px; height: 100px; background: pink; border-radius: 50%; /* 冰淇淋球 */ position: relative; /* 相對定位 */ bottom: 50px; /* 往下偏50px */ margin: 0 10px; /* 左右間距 */ display: inline-block; /* 行內(nèi)塊級元素 */ box-shadow: 0 0 10px #666666; /* 陰影 */ }
完成以上代碼后,就能看到一個美味的冰淇淋模板了!