我正在为 IE 浏览器创建一个打印 CSS,在其中我必须通过 CSS 在 div 中添加文本和图像。我正在使用content
添加文本和background
添加图像,但不知何故未显示图像。
这就是我正在做的。
#header .container:after {
content: "@The_Text_after_Twitter_Logo";
background: url("../path_to/logo-twitter.png");
position:absolute;
width:999em;
height:25px;
margin:0 0 0 5px;
}
这是正确的方法吗?我在某处做错了吗?
谢谢。