<TD> style Q

  • Thread starter Thread starter George Durzi
  • Start date Start date
G

George Durzi

I'm trying to mimic an Excel feature where you can put a background in a
sheet cell for example, diagonal lines.

I'm trying to mimic this in Html, I saved that sheet in Html, and copied the
styles to give it a shot, but no luck.

Here are the styles, any idea?

td {mso-background-source:auto;mso-pattern:auto;}

..greyout {mso-style-parent:td;mso-background-source:auto; mso-pattern:auto
thin-reverse-diag-stripe;}
 
Here are the styles, any idea?
td {mso-background-source:auto;mso-pattern:auto;}

.greyout {mso-style-parent:td;mso-background-source:auto; mso-pattern:auto
thin-reverse-diag-stripe;}

Get rid of the MS-proprieatary crap and use standard CSS:

td {backround-image: url("yourdiagonallines.gif")}

-Darrel
 
Thanks, I was trying to do it without using background images before
resorting to that
 
Back
Top