CSS文本属性与字体

一,文本属性

  • text-decoration

  • text-transform

  • text-indent

  • text-align

  • word/letter-spacing

text-decoration

++text-decoration++取值为:

  • none:去除所有装饰
  • underline:添加下划线
  • overline:添加上划线
  • line-through:添加中划线

text-transform

++text-transform++取值为:

  • capitalize:把每个单词的首字符变为大写
  • uppercase:把每个单词的所有字符变为大写
  • lowercase:把每个单词的所有字符变为小写
  • none:无影响

text-indent

++text-indent++ 为第一行的缩进大小。

html 复制代码
text-indent:2em;

text-align

++text-align++取值为:

  • left:左对齐
  • right:右对齐
  • center:居中对齐
  • justify:两端对齐

!text-align只适用于行内元素

text-align:center与text-align:justify的区别:

html 复制代码
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  div {
    height: 200px;
    width: 30%;
    background-color: azure;
    text-align: center;
  }
</style>

<body>
  <div>Welcome to Flask's documentation.
    Get started with Installation and then get an overview with the Quickstart.
    There is also a more detailed Tutorial that shows how to create a small but complete application with Flask.
    Common patterns are described in the Patterns for Flask section.
    The rest of the docs describe each component of Flask in detail, with a
    full reference in the API section.</div>

</body>

</html>
html 复制代码
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  div {
    height: 200px;
    width: 30%;
    background-color: azure;
    text-align: justify;
  }
</style>

<body>
  <div>Welcome to Flask's documentation.
    Get started with Installation and then get an overview with the Quickstart.
    There is also a more detailed Tutorial that shows how to create a small but complete application with Flask.
    Common patterns are described in the Patterns for Flask section.
    The rest of the docs describe each component of Flask in detail, with a
    full reference in the API section.</div>

</body>

</html>

letter-spacing

letter-spacing可以控制字间距,可以为负数。

二,字体属性

  • font-size
  • font-family
  • font-weight
  • line-height
  • font-style
  • font-variant

font-size

++数值+单位++

html 复制代码
font-size:10px;
font-size:2em;

++百分比(相对于父级元素的大小++)

html 复制代码
font-size:50%;

font-family

字体类型设置

font-weight

++字体大小设置++

取值:

100/200/300.....,每个数字表示一个重量

normal = 400

bold = 700

line-height

行高为基线之间的距离:

font-style

++font-style++取值:

  • normal:常规显示
  • italic:斜体形式
  • oblique:倾斜

font-variant

normal:常规显示

small-caps:将小写字母替换为缩小过的大写字母

相关推荐
视频砖家21 分钟前
移动端Html5播放器按钮变小的问题解决方法
前端·javascript·viewport功能
lyj1689971 小时前
vue-i18n+vscode+vue 多语言使用
前端·vue.js·vscode
小白变怪兽2 小时前
一、react18+项目初始化(vite)
前端·react.js
ai小鬼头2 小时前
AIStarter如何快速部署Stable Diffusion?**新手也能轻松上手的AI绘图
前端·后端·github
墨菲安全3 小时前
NPM组件 betsson 等窃取主机敏感信息
前端·npm·node.js·软件供应链安全·主机信息窃取·npm组件投毒
GISer_Jing3 小时前
Monorepo+Pnpm+Turborepo
前端·javascript·ecmascript
天涯学馆3 小时前
前端开发也能用 WebAssembly?这些场景超实用!
前端·javascript·面试
我在北京coding4 小时前
TypeError: Cannot read properties of undefined (reading ‘queryComponents‘)
前端·javascript·vue.js
Eiceblue4 小时前
使用 C# 发送电子邮件(支持普通文本、HTML 和附件)
开发语言·c#·html·visual studio
前端开发与ui设计的老司机5 小时前
UI前端与数字孪生结合实践探索:智慧物流的货物追踪与配送优化
前端·ui