I have a page where I combine labels, input boxes and text areas to display some content. I would like all of them to have the same font-family and font-size. I have played with the font-family: inherit style but this doesn't seem to work for the input and text areas. What would be the easiest way to ensure the same font / size over the whole page.
|
feedback
|
|
My CSS is iffy as I haven't used it in some time, but I believe doing
will apply to all. | |||||||||
feedback
|
|
Ok ... this does the trick:
| |||
|
feedback
|
|
I think most CSS devs will do something like
At the top of the CSS file. If you want to change labels from this, just add a
somewhere down the road. | |||||
|
feedback
|