When making a web page, if you want to use a specific font, you can reference it through Notice: The browsers that support General usage: @font-face { font-family: 'myFirstFont'; //Define the font name. When you want to use the font later, use this name src: url('YourWebFontName.ttf'), url('YourWebFontName.eot'); /* IE9 */ } h1 {font-family:'myFirstFont';} Compatibility writing @font-face { font-family: 'myFirstFont'; src: url('YourWebFontName.eot'); /* IE9 Compat Modes */ src: url('YourWebFontName.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('YourWebFontName.woff') format('woff'), /* Modern Browsers */ url('YourWebFontName.ttf') format('truetype'), /* Safari, Android, iOS */ url('YourWebFontName.svg#YourWebFontName') format('svg'); /* Legacy iOS */ } Different browsers support different font formats. Taking the current mainstream browsers as a reference, the use of .TTF, .OTF - for Firefox 3.5, Safari, Opera; Get three file formats of the font you want to use to ensure that the font can be displayed properly in major browsers. Extension: Font Path local means the local address, url means the URL (fonts in the URL path, when the web page is loaded, the font will be automatically downloaded from the server, so if the font file is too large, the web page will load slowly) As code @font-face { font-family: 'myFirstFont'; src: url('YourWebFontName.eot'), local('YourFontName.eot'); } Notice: If multiple fonts are defined on src, they are candidate relationships in order. If the defined fonts or order are modified, you need to reopen the browser to see the modified effect. Refreshing is invalid. The role of Summarize This is the end of this article about the introduction of specified fonts @font-face in CSS to be compatible with various browsers. For more relevant CSS fonts @font-face content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Details on macrotasks and microtasks in JavaScript
>>: A small introduction to the use of position in HTML
Environmental Description Server system: Ubuntu 1...
Tip: The following operations are all performed u...
Word MySQL 8.0 has been released for four years s...
Table of contents Let's talk about flattening...
Today I will introduce two HTML tags that I don’t...
1. Basic lines 2. Special effects (the effects ar...
1.Write in front: As a lightweight virtualization...
The Docker daemon uses HTTP_PROXY , HTTPS_PROXY ,...
The happiest thing that happens in a production e...
Note 1: Solve the problem of slow connection to M...
Preface In Windows, you can start multiple MySQL ...
Table of contents Preface 🍹Preparation 🍲vue3 usag...
These two attributes are often used, but their di...
This article mainly introduces an example of impl...
Text hiding code, hide a certain text in HTML Copy...