网页开发中利用CSS以图换字的多中实现方法总汇

站长手记 作者: 2024-08-28 14:25:01
CSS以图换字的技术,很久都没人提起了。它是一种在h1标签内,使用图像替换文本元素的技术,使页面在设计和可访问性之间达到平衡。本文将详细介绍CSS以图换字的9种方法

文字隐藏

<style>
    h1 {
      width: 64px;
      height: 64px;
      background: url();
      font: 12px/1 '微软雅黑';
    }
    span {
      display: none;
    }
  </style>
  <h1>
    <span>文字</span>
  </h1>

负缩进

<style>
    h1 {
      width: 64px;
      height: 64px;
      background: url();
      font: 12px/1 '微软雅黑';
      text-indent:-9999px;
    }
  </style>
  <h1>文字</h1>

负margin

<style>
    h1 {
      width: 2064px;
      height: 64px;
      background: url() right no-repeat;
      font: 12px/1 '微软雅黑';
      margin-left:-2000px;
    }
  </style>
  <h1>文字</h1>

上padding

<style>
    h1 {
      width: 64px;
      padding-top: 64px;
      height:0;
      overflow:hidden;
      background: url();
      font: 12px/1 '微软雅黑';
    }
  </style>
  <h1>文字</h1>

0宽高

<style>
    h1 {
      width: 64px;
      height: 64px;
      background: url();
      font: 12px/1 '微软雅黑';
    }
    span{display:block;width: 0;height:0;overflow:hidden;}
  </style>
  <h1><span>文字</span></h1>

文本透明

<style>
    h1 {
      width: 64px;
      height: 64px;
      background: url();
      color:transparent;
      font-size:1px;
      }
  </style>
  <h1>文字</h1>

伪元素

<style>
    h1 {
      width: 64px;
      height: 64px;
      overflow: hidden;
      font: 12px/1 '微软雅黑';
    }
    h1:before {
      content: url();
      display: block;
    }
  </style>
  <h1>文字</h1>

正缩进

<style>
    h1 {
      width: 64px;
      height: 64px;
      background: url();
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      font: 12px/1 '微软雅黑';
    }
  </style>
  <h1>文字</h1>

字体大小

<style>
    h1 {
      width: 64px;
      height: 64px;
      background: url();
      font-size:0;
    }
  </style>
  <h1>文字</h1>
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_70168.html
CSS 网页开发