CSS 仅使用CSS将HTML文本替换为图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 仅使用CSS将HTML文本替换为图像相关的知识,希望对你有一定的参考价值。

#myLogo {
	display:block;
	width:135px; /* change to your image width */
	height:35px; /* change to your image height */
	background:url(myLogo.gif) no-repeat;
	text-indent:-9999px;
}


/* in your HTML:

<h1 id="myLogo">My Company Name</h1>

*/

以上是关于CSS 仅使用CSS将HTML文本替换为图像的主要内容,如果未能解决你的问题,请参考以下文章