Somebody please tell me the difference lol... And if I should worry?
Oh and can anyone tell me a good book for CSS? All I thought it was is for saving font, color, size in one shortcut but it seems to be much more
Posted 06 March 2009 - 02:24 AM
Posted 06 March 2009 - 03:59 AM
Posted 06 March 2009 - 05:18 PM
Posted 08 March 2009 - 07:46 AM
Posted 08 March 2009 - 10:57 AM
Posted 08 March 2009 - 05:00 PM
What separates pros from amateurs is that the former group knows why and when to use a specific tool. Just saying.I think xhtml sounds cooler, so I stick with that
Posted 08 March 2009 - 05:05 PM
Posted 08 March 2009 - 05:16 PM
Posted 08 March 2009 - 05:22 PM
That fallacy is called argumentum ad novitatem.
Posted 08 March 2009 - 05:32 PM
Posted 08 March 2009 - 06:21 PM
Posted 08 March 2009 - 06:23 PM
Posted 08 March 2009 - 10:18 PM
Posted 09 March 2009 - 03:52 AM
Posted 09 March 2009 - 06:58 AM
<math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mi>y</mi> <mo>=</mo> <mfrac> <mn>1</mn> <msqrt> <mrow> <msup> <mi>x</mi> <mn>2</mn> </msup> <mo>+</mo> <mn>1</mn> </mrow> </msqrt> </mfrac> </mrow> </math>Would produce something like [tex]y=\frac{1}{\sqrt{x^2}+1}[/tex] when served as application/xhtml+xml, but if you serve it as text/html then it'll look like y = 1 x 2 + 1 because all those elements are invalid in HTML and as such ignored. Another example is SVG for embedding vector graphics.
<style type="text/css">
<!--
h1 {
font-size: 1em;
}
</style>
<style type="text/css">
<![CDATA[
h1 {
font-size: 1em;
}
]]>
</code>
There is no reason why you cannot do that in HTML as well.Well...it does look a lot neater when you've closed all tags in the right order..idk, i just prefer it...
Posted 13 March 2009 - 02:23 PM
Posted 13 March 2009 - 02:41 PM
Posted 15 March 2009 - 01:22 PM
Posted 15 March 2009 - 01:58 PM
XHTML is basically a stricter version of HTML 4.01 (only tags must be lower case and all the end tags are not optional and self-closing tags are requires for single tags like br, img, meta)
[...] if you took my html 4.01 page and simply added the closing slash to self-closing tags it would be xhtml 1 strict.
The funny thing is that job recruiters have absolutely no clue, either, and think that XHTML is some cutting edge proof of skill and is what professionals use. Actually the opposite is true. Amateurs use xhtml much more than pros - only they mess it all up and don't follow the rules.
Posted 15 March 2009 - 03:29 PM
0 members, 0 guests, 0 anonymous users