A brief discussion on the font settings in web pages

A brief discussion on the font settings in web pages

Setting the font for the entire site has always been a simple yet difficult task, because when you go deeper, there are too many things involved.

This article mainly wants to talk about how to choose fonts according to your needs for an ordinary website.

1. Required knowledge

First of all, we should make it clear that just because you set this font, it does not mean that the user's computer will display in this font.

If the user's computer does not have this font installed, it will be rendered in the second font you set. Look at a common setting

XML/HTML CodeCopy content to clipboard
  1. font-family:tahoma,arial,'Hiragino Sans GB',\5b8b\4f53,sans-serif; /* \5b8b\4f53 means Songti, this Unicode encoding is compatible with all browsers */

If the above code is set on a machine without Tahoma font, the machine will render with Arial font. If neither is available, then use the latter. If the font you specify is not available, a font from the sans-serif font family will be used.

Then, we should talk about what sans-serif is.

Sans-serif means sans serif font. It is not a type of font, but a general term for a type of font.

Correspondingly, serif means using serif fonts.

(To explain: serifs are very small modifications on the font. You can search Baidu for details. It is not relevant to this article, so I will not elaborate on it.)

Regarding common font families, here is a summary:

•serif: font with serifs. Times New Roman is the default serif font. For Chinese fonts, it is Songti, Fangsong and the like.

•sans serif: sans serif font. Arial is the default sans-serif font. Among Chinese fonts, Microsoft YaHei and Heiti are all of this type. English fonts include Helvetica, Geneva or Verdana.

•monospace: monospace font. Every letter in this font has the same width. Usually used to display program code, etc., Courier is the default monospace font. For Chinese, each character is of equal width.

2. How to set the font

After reading the necessary knowledge above, you must have a more systematic understanding of fonts.

So how do you set the website font?

Some people are used to using Songti, Arail or Tahoma as their first font. However, there is a big problem here. For larger font sizes (above 16px), the rendering is quite ugly. However, I use the font optimization tool under Windows on my computer, so I can’t show it to you. All in all, for large fonts, this setting is pretty ugly.

Some people say that Microsoft YaHei looks good when the font is large. How about setting up Microsoft YaHei completely?

There is a big problem here. YaHei is only available in Windows Vista. For XP users, which have a user share of 65%+, setting up YaHei is the same as not writing it. They still use Songti or something like that to render it. Except when you are comforting yourself or dealing with your boss (your boss usually follows the trend and uses Windows 7 or above). Really useless for most users. Moreover, Microsoft YaHei is not as good as Songti when rendering 12px fonts.

So, regarding how to set the font, I think it should be set according to the actual business and situation.

3. Conclusion

After the above analysis, I summarized a setting method that I think is pretty good

1: Best overall

The font settings for the entire site are as follows

XML/HTML CodeCopy content to clipboard
  1. font-family:Helvetica,arial,'Hiragino Sans GB',\5b8b\4f53,sans-serif;

Then use images for large and important text (such as navigation). Because after using pictures, you don’t have to worry about whether the user has installed this font, and you can make it more beautiful, with more scalability and possibilities.

2: Best performance

The font of the whole site is still

XML/HTML CodeCopy content to clipboard
  1. font-family:Helvetica,arial,'Hiragino Sans GB',\5b8b\4f53,sans-serif;

Then for the large font (it doesn’t matter whether it’s important or not here). Set up individually

XML/HTML CodeCopy content to clipboard
  1. font-family:Microsoft YaHei;

This setting can save a lot of work on the front end, but many XP users will be annoyed by the large font size.

3: The easiest solution

direct

XML/HTML CodeCopy content to clipboard
  1. font-family:Helvetica,arial,'Hiragino Sans GB',\5b8b\4f53,sans-serif;
or
XML/HTML CodeCopy content to clipboard
  1. font-family:Microsoft YaHei,Helvetica,arial,'Hiragino Sans GB',\5b8b\4f53,sans-serif;
Although it is possible that large fonts are not rendered beautifully, and Yahei may not render small fonts clearly. but, what does it matter.

The above brief discussion on font settings on web pages is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. </p>

Original URL: http://www.cnblogs.com/qqziyuan8/archive/2016/08/01/5726310.html

<<:  How to convert Chinese into UTF-8 in HTML

>>:  How to quickly deploy Redis as a Docker container

Recommend

A brief discussion on the role of the docker --privileged=true parameter

Around version 0.6, privileged was introduced to ...

How to use node to implement static file caching

Table of contents cache Cache location classifica...

Docker installation tutorial in Linux environment

1. Installation environment Docker supports the f...

Detailed explanation of the loading rules of the require method in node.js

Loading rules of require method Prioritize loadin...

Share 20 JavaScript one-line codes

Table of contents 1. Get the value of browser coo...

Problem record of using vue+echarts chart

Preface echarts is my most commonly used charting...

Docker installs and runs the rabbitmq example code

Pull the image: [mall@VM_0_7_centos ~]$ sudo dock...

How to make a website look taller and more designed

“How to make a website look high-end? Or more des...

Detailed explanation of MySQL user rights management

Table of contents Preface: 1. Introduction to Use...

Example of using CASE WHEN in MySQL sorting

Preface In a previous project, the CASE WHEN sort...

The concept and characteristics of MySQL custom variables

A MySQL custom value is a temporary container for...

How to install FastDFS in Docker

Pull the image docker pull season/fastdfs:1.2 Sta...