I'm fairly new to web design, specifically dealing with html and css, and I'm attempting to create something similar to the design in the following image: https://i.sstatic.net/Dy5F3.png
My struggle lies in centering the fa-envelope-o icon both horizontally and vertically. I've tried the following code:
#envelopeDiv{
background-color: red;
width:62px;
height:42px;
line-height:42px;
text-align:center;
vertical-align:middle;
display:inline-block;
}
#disableAllDiv .big-icon{
font-size: 25px;
line-height: inherit;
}
#disableAllDiv{
background-color: #4caf50;
}
#disableAllButton{
margin-top: 10px;
margin-bottom: 10px;
}
Unfortunately, this code didn't yield the desired outcome. Could anyone offer sample code or a more professional approach? Even tips on how to research would be greatly appreciated.