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.
Thanks in advance.
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.
Thanks in advance.
Aren't you looking for
box-sizing: border-box
instead?I think you are.