Table of Contents
常用单位
它们之间有什么区别?
例1. 默认设定
例3. rem与em(或者%)
例4. Viewport宽度
我的方式
 总结
Home Web Front-end HTML Tutorial 关于CSS中的字体尺寸设置 em rem等_html/css_WEB-ITnose

关于CSS中的字体尺寸设置 em rem等_html/css_WEB-ITnose

Jun 24, 2016 am 11:36 AM

常用单位

在CSS中可以用很多不同的方式来设定字体的尺寸。一般来说,这些单位被分成两大类:绝对单位(absolute)和相对单位(relative)。

  • 绝对单位在大多数情况下是相对于某些实际量度而言的固定值,即是说它们一旦设定,就不会因为其他元素的字体尺寸变化而变化。
  • 相对单位没有一个固定的度量值,而是由父元素尺寸来决定的相对值,它们的尺寸会根据与其相关的元素改变而改变。
  • 下面是对这些单位的一个简单整理:

    单位 类型 描述
    px Absolute 1个Viewport像素
    pt Absolute 1pt = 1/72英寸
    pc Absolute 1pc = 12pt
    % Relative 相对于父元素的字体尺寸
    em Relative 相对于父元素的字体尺寸
    rem Relative (即root em) 相对于html标签的字体尺寸
    keyword Relative xx-small, x-small, small, medium, large, x-large, xx-large
    vw Relative 相当于Viewport宽度的1/100
    vh Relative 相当于Viewport高度的1/100
    vmin Relative 相当于Viewport高宽中长度相对较小的1/100
    vmax Relative 相当于Viewport高宽中长度相对较大的1/100

    这里主要关注这几个单位:px、pt、%、em、rem和vw。

    它们之间有什么区别?

    从概念上很难理解这些单位之间的差别,所以下面用一些实例来说明。

    例1. 默认设定

    当你不设定字体尺寸时,HTML会提供一个默认的尺寸设定。大多数浏览器中和

    标签中的默认字体尺寸是100%,没有概念?看这个等式:

    100% = 1em = 1rem = 16px = 12pt
    Copy after login

    还是不懂?那就换个说法,比如说你给一个

    设置字体尺寸为100%,给另一个

    设置为16px,在屏幕上看到的这两个

    中的字体大小是一样的,下图列出了用几个不同单位设置的字体尺寸,可以看出是一样大的:

    改变的字体尺寸可以很明显的看出绝对单位和相对单位的差别。如果把设置为html { font-size: 200% },就会影响所有使用相对单位的

    。效果如下图:

    这就是相对单位最主要的优势了,借助相对单位的这种特性就可以设计出真正的响应式页面,而所要做的只是修改的字体尺寸.

    例3. rem与em(或者%)

    em(或者%)需要通过父元素的字体尺寸来计算尺寸:

    html {   font-size: 100% /* =16px */}body {  font-size: 2em; /* =32px */}p {  font-size: 1em; /* =32px */  /* font-size: 0.5em; =16px */}
    Copy after login

    因为

    是的子元素,而是的子元素,所以

    中的em和%将是之前的两倍。

    当你为一个元素添加em单位时,应当考虑到所有父元素的字体尺寸。如你所见,这样很容易使人混乱。
    使用rem可以很好的解决这个问题。rem只需要计算的字体尺寸而不需要考虑父元素。如下代码所示:

    html {   font-size: 100% /* =16px */}body {  font-size: 2rem; /* =32px */}p {  font-size: 1rem; /* =16px */}
    Copy after login

    使用rem可以让你拥有和em/%同样的缩放能力,但不必去考虑那些复杂的嵌套关系。

    例4. Viewport宽度

    vw是CSS3中新提出的一个单位,通过Viewport宽度来计算字体尺寸。这样就可以设计出更加灵活的响应式字体。
    虽然这个单位看上去非常适合用于响应式设计,但就我个人而言不是很热衷于它。在使用vw的过程中我并不能很好的控制字体的大小,不是太大就是太小。

    我的方式

    当我在写这篇文章时,我仅使用px来作为单位。因为现在大多数浏览器都允许用户放大页面,这样做就不会有可访问性的问题。
    然而,我发现了这个具有一定限制力的方式。虽然我的字体尺寸在中小型屏幕上看起来还行,但在大屏幕上会被优化的更好。尽管用户可以自行设定放大的属性,但是我们希望可以尽量减少用户的工作。
    我的解决方案是使用rem,并使用px作为备用单位。

    html {  font-size: 62.5%; /* sets the base font to 10px for easier math */}body {  font-size: 16px;  font-size: 1.6rem;    /* sets the default sizing to make sure nothing is actually 10px */}h1 {  font-size: 32px;  font-size: 3.2rem;}
    Copy after login

    像下面这样写就可以允许我按比例来放大我的字体尺寸:

    @media screen and (min-width: 1280px) {  html {    font-size: 100%;  }}
    Copy after login

     

    这个方案之所以使用px作为备用单位,是因为rem不支持IE8及其以下版本。这个方案有一个问题,就是像上面这样改变基础字体尺寸时,并不能对备用字体尺寸起到作用。不过,我不觉得这个问题多么大,因为这个匹配大型设备尺寸的能力只不过是为了锦上添花而已,并不是一个核心功能。

     总结

    常用的字体设置也就那么几种,我常用的:px,%,em,rem。

    Statement of this Website
    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

    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

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Best Graphic Settings
    2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

    The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

    What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

    The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

    How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

    The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

    What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

    The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

    What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

    The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

    What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

    The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

    What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

    Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

    How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

    This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

    See all articles