search

CSS3 Tutorial-Fonts

Dec 27, 2016 pm 03:53 PM
css3font

Front-end development programmers, how much do you know about using CSS3 tutorial-@font-face to implement personalized fonts? Today we will introduce CSS3 @font-face to you. If you are interested, you can learn more.

In web pages, we can use the font-family property of CSS to define fonts. However, whether the defined font can be displayed correctly on the user's computer depends on whether the user's computer has the font installed. We often see some foreign personal websites using very beautiful fonts, but these fonts are usually not installed on the user's computer, so it cannot be achieved using the font-family attribute. Today we will introduce the use of @font- face implements personalized fonts.

CSS3 @font-face Rules:

Prior to CSS3, web designers had to use fonts that were already installed on the user’s computer.

With CSS3, web designers can use any font they like.

When you find or purchase the font you want to use, you can store the font file on the web server, and it will be automatically downloaded to the user's computer when needed.

Your "own" font is defined in the CSS3 @font-face rule.

@font-face supports the following attributes:

font-family: Set the font name of the text.

font-style: Set text style.

font-variant: Set whether the text is uppercase or lowercase.

font-weight: Set the thickness of the text.

font-stretch: Set whether the text is stretched horizontally.

font-size: Set the text font size.

src: Set the relative path or absolute path of the custom font.

Browser support:

CSS3 Tutorial-Fonts

##Firefox, Chrome, Safari and Opera support .ttf (True Type Fonts) and .otf (OpenType Fonts) type fonts .

Internet Explorer 9+ supports the new @font-face rule, but only supports .eot type fonts (Embedded OpenType).

Note: Internet Explorer 8 and earlier do not support the new @font-face rules.

Use the font you need:

In the new @font-face rule, you must first define the name of the font (such as myFirstFont) and then point to the font file.

To use a font for an HTML element, reference the name of the font (myFirstFont) via the font-family attribute:

Example:

<style>
@font-face
{
font-family: myFirstFont;
src: url(‘Sansation_Light.ttf’),
url(‘Sansation_Light.eot’); /* IE9+ */
}
div
{
font-family:myFirstFont;
}
</style>

Use bold font:

You must add another @font-face containing descriptor for bold text:

Example:

@font-face
{
font-family: myFirstFont;
src: url(‘Sansation_Bold.ttf’),
url(‘Sansation_Bold.eot’); /* IE9+ */
font-weight:bold;
}

The file "Sansation_Bold.ttf" is another font file, It contains the bold characters of the Sansation font.

As long as the text with font-family "myFirstFont" needs to be displayed as bold, the browser will use this font.

In this way, we can set many @font-face rules for the same font.

CSS3 font descriptors:

The following table lists all font descriptors that can be defined in the @font-face rule:

DescriptorValueDescriptionfont-familynameRequired. Specifies the name of the font. srcURLRequired. Defines the URL of the font file. font-stretchOptional. Defines how to stretch the font. The default is "normal". font-styleOptional . Define the style of the font. The default is "normal". font-weight
normal

condensed

ultra-condensed

extra-condensed

semi-condensed

expanded

semi-expanded

extra-expanded

ultra-expanded

ormal

italic

oblique

normal

bold

100

200

300

400

500

600

700

800

900

Optional. Defines the weight of the font. The default is "normal".
unicode-range unicode-range Optional. Defines the range of UNICODE characters supported by the font. The default is "U+0-10FFFF".

The above is the content of CSS3 tutorial-fonts. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
The Lost CSS Tricks of Cohost.orgThe Lost CSS Tricks of Cohost.orgApr 25, 2025 am 09:51 AM

In this post, Blackle Mori shows you a few of the hacks found while trying to push the limits of Cohost’s HTML support. Use these if you dare, lest you too get labelled a CSS criminal.

Next Level CSS Styling for CursorsNext Level CSS Styling for CursorsApr 23, 2025 am 11:04 AM

Custom cursors with CSS are great, but we can take things to the next level with JavaScript. Using JavaScript, we can transition between cursor states, place dynamic text within the cursor, apply complex animations, and apply filters.

Worlds Collide: Keyframe Collision Detection Using Style QueriesWorlds Collide: Keyframe Collision Detection Using Style QueriesApr 23, 2025 am 10:42 AM

Interactive CSS animations with elements ricocheting off each other seem more plausible in 2025. While it’s unnecessary to implement Pong in CSS, the increasing flexibility and power of CSS reinforce Lee's suspicion that one day it will be a

Using CSS backdrop-filter for UI EffectsUsing CSS backdrop-filter for UI EffectsApr 23, 2025 am 10:20 AM

Tips and tricks on utilizing the CSS backdrop-filter property to style user interfaces. You’ll learn how to layer backdrop filters among multiple elements, and integrate them with other CSS graphical effects to create elaborate designs.

SMIL on?SMIL on?Apr 23, 2025 am 09:57 AM

Well, it turns out that SVG's built-in animation features were never deprecated as planned. Sure, CSS and JavaScript are more than capable of carrying the load, but it's good to know that SMIL is not dead in the water as previously

'Pretty' is in the eye of the beholder'Pretty' is in the eye of the beholderApr 23, 2025 am 09:40 AM

Yay, let's jump for text-wrap: pretty landing in Safari Technology Preview! But beware that it's different from how it works in Chromium browsers.

CSS-Tricks Chronicles XLIIICSS-Tricks Chronicles XLIIIApr 23, 2025 am 09:35 AM

This CSS-Tricks update highlights significant progress in the Almanac, recent podcast appearances, a new CSS counters guide, and the addition of several new authors contributing valuable content.

Tailwind's @apply Feature is Better Than it SoundsTailwind's @apply Feature is Better Than it SoundsApr 23, 2025 am 09:23 AM

Most of the time, people showcase Tailwind's @apply feature with one of Tailwind's single-property utilities (which changes a single CSS declaration). When showcased this way, @apply doesn't sound promising at all. So obvio

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),