Question
How to use custom CSS as a class
I have created this CSS:
/*creates white box with fill options*/
.whitebox {
width: 100%; min-height: 160px;
padding: 5px; margin: auto; text-align: center;
background-color: #ff8800; color: #ffffff;
}
.quickcheckfill {
background-color: #ffc81e;
color: #ffffff;
padding-top:15px;
}
I am trying to apply as a class:
<div class="whitebox quickcheckfill">
It doesn't work. Have I got something wrong?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
