localhost
localhost

Reputation: 871

Increasing size of pseudo class

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

Answers (1)

Geethu Jose
Geethu Jose

Reputation: 1993

Try adding font-size;

label:before {
content: '\f096'; /*checkbox unchecked */
font-size: 30px;
}

Upvotes: 3

Related Questions