I have one HTML page which includes some text and formatting. I want to make it Have the same font-family and the same text-size ignoring all inner formatting of text.
I want to set a global font format for the HTML page.
How can i achieve this?
|
I have one HTML page which includes some text and formatting. I want to make it Have the same font-family and the same text-size ignoring all inner formatting of text. I want to set a global font format for the HTML page. How can i achieve this? |
||||
|
|
|
You should be able to utilize the asterisk and
The asterisk matches everything (you could probably get away without the The The rest of the style within the braces is just like any other styling and you can do whatever you'd like to in there. I chose to change the font size, color and family as an example. |
|||||||||||
|
|
Use the following css:
The Note that the |
|||||||||||
|
|
Set it in the body{} of your css e.g.
|
|||
|
|
|
Best practice I think is to set the font to the body:
and if you decide to change it for some element it could be easily overwrited:
|
|||
|
|
|
Try this:
|
|||||
|