DEV Community

Inuwa Nura
Inuwa Nura

Posted on

Snack

<!DOCTYPE html>









Favorite Snack

<br>
.snack {<br>
width: 150px;<br>
height: 100px;<br>
background-color: #F9BF45;<br>
border-radius: 50% 50% 0 0;<br>
position: relative;<br>
overflow: hidden;<br>
}<br>
.snack::before {<br>
content: &#39;&#39;;<br>
position: absolute;<br>
width: 80%;<br>
height: 80%;<br>
background-color: #FFCC00;<br>
border-radius: 50%;<br>
top: 10%;<br>
left: 10%;<br>
}<br>
.snack::after {<br>
content: &#39;&#39;;<br>
position: absolute;<br>
width: 20px;<br>
height: 20px;<br>
background-color: #FF6F61;<br>
border-radius: 50%;<br>
top: 40%;<br>
left: 20%;<br>
}<br>









Top comments (0)