.焰火 {
width: 100px;
height: 100px;
border-radius: 50%;
background-size: cover;
```html
.焰火 {
width: 100px;
height: 100px;
border-radius: 50%;
background-size: cover;
在這個例子中,`.焰火` 元素的寬度和高度均為 100 像素,并使用 `border-radius` 將火焰的圓角大小設置為 50%。然后,我們使用 `background-size` 屬性設置火焰的圖片大小為全屏覆蓋,這樣可以確保火焰完全顯示出來。
除了設置火焰的顏色和大小之外,我們還可以使用 `border-radius` 和 `background-position` 屬性來調整火焰的位置和形狀。例如:
```html
.焰火 {
width: 100px;
height: 100px;
border-radius: 50%;
background-size: cover;
background-position: center center;