I want to use a letter which hides the overflows of colors. Want something like google icon but completely built with CSS. Is there a solution to hide the overflow of that red rectangle? Want to rebuilt the Google logo.
#letter {
background: white;
font-family: "Product Sans", Arial, sans-serif;
color: green;
font-size: 200px;
font-weight: 900;
opacity: 0.1;
position: relative;
margin-top: 0px;
margin-left: 0px;
overflow: hidden;
}
#circle1 {
width: 30px;
height: 100px;
background: red;
position: absolute;
top: 30px;
left: 80px;
}
<p id="letter">G
<div id="circle1"></div>http://stackoverflow.com/questions/ask#