我试图在我的网站上使用的样式表中获取“背景图像”标签的值。样式表是从 HTML 文件中引用的,如下所示:
<style media="all" type="text/css">
@import "master.css";
</style>
<style media="all" type="text/css">
@import "layout.css";
</style>
layout.css 文件包含:
#frontpage-main-features {
background: url('../elms/frontpage-main-gradient.jpg') no-repeat left top;
margin-bottom: 10px;
}
#frontpage-main-features-inner {
width: 700px;
padding: 20px 20px 10px 20px;
background: url('../elms/frontpage-main-gradient-bottom.jpg') no-repeat left bottom;
}
在 master.css 文件中引用了一个背景图像,然后在 layout.css 文件中由 #frontpage-main-features-inner 部分重载。我非常想访问“背景”标签,以查看当前在页面的特定部分显示的背景图像。有什么建议么?
最好的,
迈克尔