| I'm getting some odd behavior with the following usage in a webapp: (mac tab (href . body)
`(tag (a href ,href)
(div (class "tab") (pr ,@body))))
;; Inside my page I do stuff like this
(div (id "tabBar")
(tab "blog" "Home")
(tab "about" "About"))
The expected results of the above being: <div id="tabBar">
<a href="blog"><div class="tab">Home</div></a>
<a href="about"><div class="tab">About</div></a>
</div>
However, while the resulting HTML seems to be the same as the expected result, some of my CSS on for the <div class="tab"> is not working, despite the exact same CSS and HTML for the document being used here:http://dev.compiz-fusion.org/~wfarr/files/www-mockup/index.html It's also interesting to note that while the HTML is the same in both documents, when examining them both with Firebug, in the version linked above all looks well, but in my local version (the Arc one) the <a> tags around the tabs are grayed out. Any ideas? |