您好,登錄后才能下訂單哦!
這篇文章主要介紹CSS中以圖換字的示例分析,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
文字隱藏
在h2標簽中,新增span標簽來保存標題內容,然后將其樣式設置為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>小火柴的藍色理想</span> </h2>
負縮進
通過使用text-index:-9999px,這樣一個比較大的負縮進,使文本移到頁面以外的區域
<style> h2 { width: 64px; height: 64px; background: url(https://static.xiaohuochai.site/icon/icon_64.ico); font: 12px/1 '微軟雅黑'; text-indent:-9999px; } </style> <h2>小火柴的藍色理想</h2>
負margin
通過使用margin-left:-2000px,使盒模型向左偏移2000px,然后將寬度設置為2064px,從而頁面中只顯示2064px中64px的部分。將圖片的背景設置為右對齊,且不重復
<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>小火柴的藍色理想</h2>
上padding
因為背景是顯示在padding-box區域中的,而文本是顯示在content-box區域中。所以,將height設置為0,用padding-top來替代height,并設置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>小火柴的藍色理想</h2>
0寬高
通過新增一個span標簽來保存文本內容,并將該標簽的寬高設置為0,再設置溢出隱藏即可
<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>小火柴的藍色理想</span></h2>
文本透明
設置文本的顏色為transparent,并設置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>小火柴的藍色理想</h2>
偽元素
使用before偽元素,content設置為圖片的URL,在h2元素上設置溢出隱藏
<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>小火柴的藍色理想</h2>
正縮進
設置text-indent:100%,使文本縮進到父元素寬度區域的右側。然后配合設置white-space:nowrap和overflow:hidden,使文本不換行,并溢出隱藏。從而隱藏文本內容
<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>小火柴的藍色理想</h2>
字體大小
通過設置font-size:0,可以將字體大小設置為0
<style> h2 { width: 64px; height: 64px; background: url(https://static.xiaohuochai.site/icon/icon_64.ico); font-size:0; } </style> <h2>小火柴的藍色理想</h2>
以上是“CSS中以圖換字的示例分析”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。