CSS padding effecting width & height of component

83 Views Asked by At

How can I give fixed width & height of button or label even after applying the big padding.

I tried with box-sizing:content-box. but its not working.

Example code

Thanks in advance.

1

There are 1 best solutions below

1
On

Aren't you looking for box-sizing: border-box instead?

I think you are.