XSLT nowrap and XHTML 1.0 Strict

Posted by cc96ai on Stack Overflow See other posts from Stack Overflow or by cc96ai
Published on 2010-03-31T20:56:27Z Indexed on 2010/03/31 21:03 UTC
Read the original article Hit count: 500

Filed under:

we have XSLT to transform XML into HTML in XHTML 1.0 Strict

in XSLT

<td colspan="3" nowrap="nowrap">

HTML output will be

<td colspan="3" nowrap="nowrap">

however it will failure in XHTML 1.0 Strict check. how XSLT can I generate into

<td colspan="3" nowrap>

© Stack Overflow or respective owner

Related posts about xslt