CSS属性-文本

前言


🦧上篇文章我们学习了CSS的相关概念,这篇文章我们将开始学习CSS中一些属性,本文章是入门级别的内容,同时也是个人学习笔记性质的内容,前端老鸟请绕路。

一.text-decoration


🐻‍❄️text-decoration用来设置文字的装饰线,text-decoration一般有如下的取值,我们一一来进行演示

  1. none:无任何装饰线,可以去除a标签的下划线。
  2. underline:下划线。
  3. overline:上划线。
  4. line-through:中划线(删除线)
html 复制代码
<style>
    .text-style1 {
      text-decoration: none;
      margin-bottom: 20px;
    }

    .text-style2 {
      text-decoration: underline;
      margin-bottom: 20px;
    }

    .text-style3 {
      text-decoration: line-through;
      margin-bottom: 20px;
    }

    .text-style4 {
      text-decoration: overline;
      margin-bottom: 20px;
    }
</style>

<body>
  <div class="text-style1">你好世界111!</div>
  <div class="text-style2">你好世界222!</div>
  <div class="text-style3">你好世界333!</div>
  <div class="text-style4">你好世界444!</div>
</body>

二.text-transform


🙈text-transform用于设置文字的大小写转换,transform单词的意思是使形变的意思。

  1. capitalize:(使...首字母大写, 资本化的意思)将每个单词的首字符变为大写。
  2. uppercase:(大写字母)将每个单词的所有字符变为大写。
  3. lowercase:(小写字母)将每个单词的所有字符变为小写。
  4. none:没有任何影响。
html 复制代码
<style>
    .text-style1 {
      text-transform: none;
      margin-bottom: 20px;
    }

    .text-style2 {
      text-transform: capitalize;
      margin-bottom: 20px;
    }

    .text-style3 {
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .text-style4 {
      text-transform: lowercase;
      margin-bottom: 20px;
    }
</style>
<body>
  <div class="text-style1">abcdefg</div>
  <div class="text-style2">abcdefg</div>
  <div class="text-style3">ABCDEFG</div>
  <div class="text-style4">ABCDEFG</div>
</body>

三.text-indent


🐸text-indent用于设置首行文本的缩进,text-indent: 2em刚好缩进两个空格。

html 复制代码
<style>
    .text-style1 {
      text-transform: none;
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      text-indent: 2em;
    }
</style>

<body>
  <div class="text-style1">风到这里就是黏,黏住过客的思念,雨到了这里缠成线,缠住我们留恋人世间,你在身边就是缘</div>
</body>

四.text-align


😳text-align直接翻译过来的意思使对齐方式,它有如下这些常用值。

  1. left左对齐
  2. right右对齐
  3. center中间对齐
  4. 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>
  <style>
    .text-style1 {
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      text-align: center;
    }

    .text-style2 {
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      text-align: left;
    }

    .text-style3 {
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      text-align: right;
    }

    .text-style4 {
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      text-align: justify;
    }
  </style>
</head>

<body>
  <div class="text-style1">风到这里就是黏</div>
  <div class="text-style2">风到这里就是黏</div>
  <div class="text-style3">风到这里就是黏</div>
  <div class="text-style4">风到这里就是黏</div>
</body>

</html>

五.letter-spacing、word-spacing


🙈这两个属性主要用来设置字母单词之间的间距内容单位是像素,默认值为0,可以设置负值。

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>
  <style>
    .text-style1 {
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      letter-spacing: 2px;
    }

    .text-style2 {
      width: 200px;
      background-color: antiquewhite;
      margin-bottom: 20px;
      padding: 16px;
      word-spacing: 4px;
    }
  </style>
</head>

<body>
  <div class="text-style1">classclassclassclass</div>
  <div class="text-style2">HelloWorld</div>
</body>

</html>

六.总结


😬这篇文章我们学习了文本相关的几个CSS属性,CSS相关的属性有非常多的内容,但是在日常开发中基本就是写的这几个属性,所以把这几个写好就基本满足了开发的要求了。

相关推荐
UXbot1 分钟前
AI 原型工具零设计基础操作指南与功能解析(2026)
前端·ui·产品经理·原型模式·web app
yuzhiboyouye36 分钟前
VO一般java后端怎么转换成前端想要的数据
java·前端·状态模式
小脑斧1231 小时前
从范式重构到工程落地:OpenTiny NEXT 引领前端智能化新范式
前端·hermesagent·opentiny next
小江的记录本1 小时前
【AI大模型选型指南】《2026年5月(最新版)国内外主流AI大模型选型指南》(企业版)
前端·人工智能·后端·ai作画·aigc·ai编程·ai写作
幽络源小助理1 小时前
最新轻量美化表白墙系统源码v2.0_带后台版_附搭建教程
前端·开源·源码·php源码
qq_381338501 小时前
前端状态管理新范式:Zustand、Jotai 与 Preact Signals 深度对比
前端·arcgis
布局呆星1 小时前
Vue Router 笔记(二):正则路由、组件通信与动态路由
前端·javascript·vue.js
丑八怪大丑1 小时前
HTML&CSS
前端·css·html
团象科技1 小时前
全渠道出海布局之下,多币种云结算承担着怎样的作用
前端·人工智能
lolo大魔王2 小时前
Go 语言 Web 框架 Gin 入门详解
前端·golang·gin