zoukankan      html  css  js  c++  java
  • CSS text-transform 属性——转换文本的大小写格式

    可能的值

    描述
    none 默认。定义带有小写字母和大写字母的标准的文本。
    capitalize 文本中的每个单词以大写字母开头。
    uppercase 定义仅有大写字母。
    lowercase 定义无大写字母,仅有小写字母。
    inherit

    规定应该从父元素继承 text-transform 属性的值。

    <html>

    <head>
    <style type="text/css">
      h1 {text-transform: uppercase}
      p.uppercase {text-transform: uppercase}
      p.lowercase {text-transform: lowercase}
      p.capitalize {text-transform: capitalize}
    </style>
    </head>

    <body>
    <h1>This Is An H1 Element</h1>
    <p class="uppercase">This is some text in a paragraph.</p>
    <p class="lowercase">This is some text in a paragraph.</p>
    <p class="capitalize">This is some text in a paragraph.</p>
    </body>

    </html>

    查看结果:

    This Is An H1 Element

    This is some text in a paragraph.

    This is some text in a paragraph.

    This is some text in a paragraph.

  • 相关阅读:
    redis中文API
    基于redis的分布式锁
    redis安装使用配置
    windows常用命令
    curl命令详解
    linux远程连接
    memcache在大型网站的应用策略
    缓存使用的一些注意事项
    记录memcache分布式策略及算法
    U盘安装Centos7.0图解
  • 原文地址:https://www.cnblogs.com/liuyanxia/p/5659278.html
Copyright © 2011-2022 走看看