当前位置: 首页 > article >正文

HTML5新特性|06 文本效果text-shadowword-wrap自定义字体

文本效果

1、CSS3包含多个新的文本特性

属性:

  • text-shadow:水平阴影 垂直阴影 模糊距离 阴影颜色

  • word-wrap:用于指定当文本溢出其容器的边界时如何处理换行的问题

浏览器支持:

Internet Explorer 10、Firefox、 Chrome、 Safari 以及Opera支持text-shadow属性。

2、实例

示例1:文本阴影text-shadow

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css3文本效果_text-shadow</title>
    <style>
        h1{
            /*设置文本阴影*/
            /*text-shadow:水平阴影 垂直阴影 模糊距离 阴影颜色*/
            text-shadow: 5px 5px 3px #ff0000;
        }
    </style>
</head>
<body>
    <h1>我是一个标题</h1>
</body>
</html>

在这里插入图片描述

示例2:文本溢出换行word-wrap

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css3文本效果_word-wrap</title>
    <style>
        p.test{
            /*1em 等于 元素的字体大小*/
            width: 11em;
            border: 1px solid #2277ff;
            /*用于指定当文本溢出其容器的边界时如何处理换行的问题*/
            word-wrap: break-word;
        }
    </style>
</head>
<body>
    <p class="test">
        Thisismorethanjustaplace. It’s a way of life. This is where Culture and community thrives. Where Creative Energy sparks Entrepreneurial spirit…
        If you’re thinking of making a move to the West of Ireland but have some big questions, this page has been designed for you.
        How much will rent cost? How much is childcare? Have many people made the move successfully and found a role?
        We will be adding new content all the time so be sure to check back or follow us on social to keep up to date.
    </p>
</body>
</html>

在这里插入图片描述

示例3:引用服务器上的字体

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>css3文本效果_引用服务器上的字体.html</title>
    <style>
        /*自定义字体myfamily*/
        @font-face{
            font-family: myfamily;
            src: url(".ttf");
        }
        p.test{
            border: 1px solid #2277ff;
            font-family: myfamily;
        }

    </style>
</head>
<body>
    <p class="test">
        It's a way of life. This is where Culture and community thrives.
    </p>
</body>
</html>

在这里插入图片描述


http://www.kler.cn/a/467517.html

相关文章:

  • Ruby 数据类型
  • 【CPU】堆栈和堆栈指针(个人草稿)
  • HTML5 文件上传(File Upload)详解
  • 小程序学习06——uniapp组件常规引入和easycom引入语法
  • MySQL UNION 的用法与实例
  • SpringBoot+Vue养老院管理系统设计与实现【开题报告+程序+安装部署+售后讲解】
  • PyTorch不同优化器比较
  • 自动生成RESTful API——Spring Data Rest
  • C# 内置值类型
  • 基于Spring Boot的紧急物资管理系统
  • ARP攻击的原理和实现 (网络安全)
  • C#调用Lua
  • 监控易:确保统一运维管理平台长期稳定高效运行
  • 计算机网络基础(7)中科大郑铨老师笔记
  • 机器人领域的一些仿真器
  • 基于YOLOv8的道路缺陷检测系统
  • 【Golang 面试题】每日 3 题(十五)
  • 【Motion Builder】配置c++插件开发环境
  • 【赵渝强老师】MongoDB写入数据的过程
  • 【redisson】redisson分布式锁原理分析
  • 【深度学习】交叉熵:从理论到实践
  • 专业140+总分400+中国海洋大学819信号与系统考研综合考研经验中海大电子信息与通信工程,真题,。大纲,参考书。
  • 【go类库分享】go rate 原生标准限速库
  • 旷视科技Java面试题及参考答案
  • AWS IAM基础知识
  • ‘元素.style.样式名‘获取不到样式,应该使用Window.getComputedStyle()获取正真的样式