Input font family reset?

I have try

input
{
font-family: inherit;
}

And if use on body tag the

body
{
font-weight: bold;
}

Then is no need to set font-weight: bold; on input?

Did you mean font-weight: inherit;? If so yes, but it seems a bit odd to set the body font-weight to bold, do you really want all text on the page to be bold?

1 Like

I got that to no font-weight: bold: on input I need to set. Other way get it from body tag!

input
{
font-weight: normal;
}

So I think understand!

Thanks!