Jump to content

attaboy

Members
  • Posts

    5
  • Joined

  • Last visited

attaboy's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. I want to know how to do a proper fallback for html5 <video> I understand if I can cram a FLV into a MP4 container that I should be able to use it as a fallback for IE 8 and 7. I used super C to create a mp4 container with FLV in it but it gives me a "invalid sample description message" when I try to run it.
  2. Thanks for responding. After posting this I read a little further in my book and found what you just mentioned. IE always has to ruin the fun don't they. I wonder if anyone has come up with an IE voodoo doll for web developers/designers. btw is there a way to flag these posts as solved?
  3. I have a XML file: <?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="letter2text.xsl"?><letter> <to>Mom</to> <from>Tom</from> <message>Happy Mother's Day</message> </letter> it uses this stylesheet: <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:output method="text"/><xsl:template match="/letter"><xsl:apply-templates select="*"/></xsl:template><xsl:template match="to"><xsl:text>TO: </xsl:text><xsl:apply-templates/> <xsl:text></xsl:text></xsl:template><xsl:template match="from"><xsl:text>FROM: </xsl:text> <xsl:apply-templates/> <xsl:text></xsl:text></xsl:template> <xsl:template match="message"><xsl:text>MESSAGE: </xsl:text> <xsl:apply-templates/> <xsl:text></xsl:text></xsl:template></xsl:stylesheet> The output looks like this in all browsers except IE8TO: MomFROM: TomMESSAGE: Happy Mother's DayIE8 sees it as:TO: Mom FROM: Tom MESSAGE: Happy Mother's DayIE doesn't seem to be the sharpest knife in the drawer.Is there any way to indicate line break that even IE will understand?
  4. That did it thanks! I have a different issue with IE but that will be a new post.
  5. This doesn't work with IE8, Chrome, Safari, and Opera - all Browsers are latest version.<?xml-stylesheet type="text/xsl" href="letter2text.xsl" version="1.0"?>It only works with Firefox.Is there a better way to call a stylsheet?
×
×
  • Create New...