溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

CSS中以圖換字的示例分析

發(fā)布時(shí)間:2021-08-03 10:14:16 來源:億速云 閱讀:140 作者:小新 欄目:web開發(fā)

這篇文章主要介紹CSS中以圖換字的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

文字隱藏

在h2標(biāo)簽中,新增span標(biāo)簽來保存標(biāo)題內(nèi)容,然后將其樣式設(shè)置為display:none

  <style>
    h2 {
      width: 64px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      font: 12px/1 '微軟雅黑';
    }
    span {
      display: none;
    }
  </style>
  <h2>
    <span>小火柴的藍(lán)色理想</span>
  </h2>

負(fù)縮進(jìn)

通過使用text-index:-9999px,這樣一個(gè)比較大的負(fù)縮進(jìn),使文本移到頁面以外的區(qū)域

  <style>
    h2 {
      width: 64px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      font: 12px/1 '微軟雅黑';
      text-indent:-9999px;
    }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

負(fù)margin

通過使用margin-left:-2000px,使盒模型向左偏移2000px,然后將寬度設(shè)置為2064px,從而頁面中只顯示2064px中64px的部分。將圖片的背景設(shè)置為右對(duì)齊,且不重復(fù)

  <style>
    h2 {
      width: 2064px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico) right no-repeat;
      font: 12px/1 '微軟雅黑';
      margin-left:-2000px;
    }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

上padding

因?yàn)楸尘笆秋@示在padding-box區(qū)域中的,而文本是顯示在content-box區(qū)域中。所以,將height設(shè)置為0,用padding-top來替代height,并設(shè)置overflow:hidden。則,可以只顯示背景不顯示文本

  <style>
    h2 {
      width: 64px;
      padding-top: 64px;
      height:0;
      overflow:hidden;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      font: 12px/1 '微軟雅黑';
    }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

0寬高

通過新增一個(gè)span標(biāo)簽來保存文本內(nèi)容,并將該標(biāo)簽的寬高設(shè)置為0,再設(shè)置溢出隱藏即可

  <style>
    h2 {
      width: 64px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      font: 12px/1 '微軟雅黑';
    }
    span{display:block;width: 0;height:0;overflow:hidden;}
  </style>
  <h2><span>小火柴的藍(lán)色理想</span></h2>

文本透明

設(shè)置文本的顏色為transparent,并設(shè)置font-size為1px,即減少行高的影響

  <style>
    h2 {
      width: 64px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      color:transparent;
      font-size:1px;
      }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

偽元素

使用before偽元素,content設(shè)置為圖片的URL,在h2元素上設(shè)置溢出隱藏

  <style>
    h2 {
      width: 64px;
      height: 64px;
      overflow: hidden;
      font: 12px/1 '微軟雅黑';
    }
    h2:before {
      content: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      display: block;
    }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

正縮進(jìn)

設(shè)置text-indent:100%,使文本縮進(jìn)到父元素寬度區(qū)域的右側(cè)。然后配合設(shè)置white-space:nowrap和overflow:hidden,使文本不換行,并溢出隱藏。從而隱藏文本內(nèi)容

  <style>
    h2 {
      width: 64px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      text-indent: 100%;
      white-space: nowrap;
      overflow: hidden;
      font: 12px/1 '微軟雅黑';
    }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

字體大小

通過設(shè)置font-size:0,可以將字體大小設(shè)置為0

  <style>
    h2 {
      width: 64px;
      height: 64px;
      background: url(https://static.xiaohuochai.site/icon/icon_64.ico);
      font-size:0;
    }
  </style>
  <h2>小火柴的藍(lán)色理想</h2>

以上是“CSS中以圖換字的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI