In CSS, the 'font-family' property is used to set the font of the text content of an HTML element. It accepts multiple font names as values. If the browser doesn't support the first font, it sets the next font style for the HTML element.
Users can use the 'font-family' CSS property according to the following syntax.
font-family: value1, value2, value3, ...
The '-apple-system' value of the 'font-family' CSS property allows developers to set the same font for the HTML content of a web page as that of the Apple operating system. This means we can set fonts based on the user's device preferences.
grammar
Users can use the "-apple-system" font as the "font-family" CSS property according to the following syntax.
font-family: -apple-system;
Example 1
In the example below, we set the "-apple-system" font family for the text content of the HTML element. If you are using an Apple device, you can observe that it sets the font to the same specifications as your Apple device.
<html> <head> <style> .text { font-size: 1.6rem; font-family: -apple-system; color: blue; } </style> </head> <body> <h2 id="Using-the-i-apple-system-i-fonts-to-set-the-font-according-to-apple-device-s-font">Using the <i> -apple-system </i> fonts to set the font according to apple device's font</h2> <p class = "text"> Welcome to the TutorialsPoint! </p> </body> </html>The Chinese translation of
Example 2
is:Example 2
In the example below, we add "BlinkMacSystemFont" to the alternatives as the second value of the font family property. Here, for Firefox and Opera browsers, the "-apple-system" value is used, while Chrome browser supports "BlinkMacSystemFont". Additionally, we used some other fonts as alternative values. So "font-family" will select the next font until it finds one that is supported by the specific browser.
<html> <head> <style> .text { font-size: 1.6rem; font-family: -apple-system, BlinkMacSystemFont, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: green; } </style> </head> <body> <h2 id="Using-the-i-apple-system-i-fonts-to-set-the-font-according-to-apple-device-s-font">Using the <i> -apple-system </i> fonts to set the font according to apple device's font</h2> <p class = "text"> Hey! How are you? </p> </body> </html>
Users learned to use the "-apple-system" font family to select fonts for Apple devices to select fonts based on the user's device preferences. Additionally, we set up fallback fonts in case the browser cannot find the device's fonts.
The above is the detailed content of 'What does font-family -apple-system mean?'. For more information, please follow other related articles on the PHP Chinese website!

Yes,youshouldlearnbothFlexboxandGrid.1)Flexboxisidealforone-dimensional,flexiblelayoutslikenavigationmenus.2)Gridexcelsintwo-dimensional,complexdesignssuchasmagazinelayouts.3)Combiningbothenhanceslayoutflexibilityandresponsiveness,allowingforstructur

What does it look like to refactor your own code? John Rhea picks apart an old CSS animation he wrote and walks through the thought process of optimizing it.

CSSanimationsarenotinherentlyhardbutrequirepracticeandunderstandingofCSSpropertiesandtimingfunctions.1)Startwithsimpleanimationslikescalingabuttononhoverusingkeyframes.2)Useeasingfunctionslikecubic-bezierfornaturaleffects,suchasabounceanimation.3)For

@keyframesispopularduetoitsversatilityandpowerincreatingsmoothCSSanimations.Keytricksinclude:1)Definingsmoothtransitionsbetweenstates,2)Animatingmultiplepropertiessimultaneously,3)Usingvendorprefixesforbrowsercompatibility,4)CombiningwithJavaScriptfo

CSSCountersareusedtomanageautomaticnumberinginwebdesigns.1)Theycanbeusedfortablesofcontents,listitems,andcustomnumbering.2)Advancedusesincludenestednumberingsystems.3)Challengesincludebrowsercompatibilityandperformanceissues.4)Creativeusesinvolvecust

Using scroll shadows, especially for mobile devices, is a subtle bit of UX that Chris has covered before. Geoff covered a newer approach that uses the animation-timeline property. Here’s yet another way.

Let’s run through a quick refresher. Image maps date all the way back to HTML 3.2, where, first, server-side maps and then client-side maps defined clickable regions over an image using map and area elements.

The State of Devs survey is now open to participation, and unlike previous surveys it covers everything except code: career, workplace, but also health, hobbies, and more.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

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),

Zend Studio 13.0.1
Powerful PHP integrated development environment

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

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
