Reputation: 871
I am using the following code in my CSS, but I want to make it bigger, so it stands out, I tried using width and height, but it won't work.
label:before {
content: '\f096'; /*checkbox unchecked */
height:50px; /*Doesn't work*/
width:50px; /*Doesn't work*/
}
and how can I find more content code to use it in my content?
Upvotes: 0
Views: 29
Reputation: 1993
Try adding font-size;
label:before {
content: '\f096'; /*checkbox unchecked */
font-size: 30px;
}
Upvotes: 3