I am trying to get the value of a "Background-image"-tag in a stylesheet which is used on my web-site. The style-sheets are referenced from the HTML file as follows:
<style media="all" type="text/css">
@import "master.css";
style>
In this file is a "Background-image"-tag which I would very much like to be able to read. Any suggestions?
Best,
Michael
Rahul Kumar SaxenaPosted Sep 2, 2009, 4:47 AM
body in uur css or you can make class and use this class in main table or Div tag
body
{
background: url(../Image/MBluebg.gif)
repeat-x;
}
OR
.CSSCLASSFORImageRepeat
{
background: url(../Images/SkyBlue.jpg) #d3e5f1 repeat-x left top;
}