On Fri, Apr 11, 2008 at 6:18 PM, treybean <[EMAIL PROTECTED]> wrote:

>
>
> If I do:
>
> haml_tag :div, :class=>'clearfloat'
>
> it generates:
>
> <div class="clearfloat"/>


In XHTML, this is perfectly valid, safe and legal. But, if you're serving
your pages as text/html (which you are because IE doesn't support XHTML),
this would be parsed like an opening tag for DIV and the tag soup parser
will continue to search for what it thinks could be the closing tag. In most
cases, the document would render all messed-up (depending on your CSS,
mostly).

You can use this:

  haml_tag :div, nil, :class=>'clearfloat'

- Mislav

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to