Connecting Tech Pros Worldwide Help | Site Map

HTML 5

  #1  
Old October 7th, 2008, 01:25 AM
Carl
Guest
 
Posts: n/a
http://www.w3.org/html/wg/html5/


I have looked over the specs but I don't see anything special that
really stands out to me. Why are they working on HTML when CSS has been
the source of my woes? Has anyone else looked over this?
  #2  
Old October 7th, 2008, 01:45 AM
Darin McGrew
Guest
 
Posts: n/a

re: HTML 5


In article <gcea0l$4md$1@news-int.gatech.edu>, Carl <carl@never.comwrote:
Quote:
http://www.w3.org/html/wg/html5/
>
>
I have looked over the specs but I don't see anything special that
really stands out to me. Why are they working on HTML when CSS has been
the source of my woes? Has anyone else looked over this?
There is new structural markup that resembles some of the new markup that
HTML 3.0 tried to introduce. It looked useful then, and it looks useful
now. We'll see whether it suffers the same fate as HTML 3.0...
--
Darin McGrew, mcgrew@stanfordalumni.org, http://www.rahul.net/mcgrew/
Web Design Group, darin@htmlhelp.com, http://www.HTMLHelp.com/

"It's bad luck to be superstitious."
  #3  
Old October 7th, 2008, 02:55 AM
Guy Macon
Guest
 
Posts: n/a

re: HTML 5




Carl wrote:
Quote:
>http://www.w3.org/html/wg/html5/
>
>I have looked over the specs but I don't see anything special that
>really stands out to me.
http://www.ibm.com/developerworks/library/x-html5/
http://www.w3.org/html/wg/html5/diff/
http://www.webmonkey.com/blog/How_HT...anging_the_Web
Quote:
>Why are they working on HTML when CSS has been
>the source of my woes?
HTML4 is basically sound and can be improved. CSS has basic
design flaws that make it unsuitable for some layouts, and a
total redo will fail due to lack of browser support. See
[ http://www.google.com/search?q=css+sucks ].

That being said, there is a method that removes manu of the woes
assiciated with CSS. Make a speciual test CSS stylesheet that
has this sort of thing in it:

html {border : 1px solid; border-color : yellow; }
head {border : 1px solid; border-color : black; }
meta {border : 1px solid; border-color : black; }
title {border : 1px solid; border-color : black; }
body {border : 1px solid; border-color : green; }
div {border : 1px solid; border-color : red; }
p {border : 1px solid; border-color : blue; }
h1 {border : 1px solid; border-color : blue; }
h2 {border : 1px solid; border-color : blue; }
h3 {border : 1px solid; border-color : blue; }
h4 {border : 1px solid; border-color : blue; }
a {border : 1px solid; border-color : silver; }
strong {border : 1px solid; border-color : yellow; }
script {border : 1px solid; border-color : red; }
noscript {border : 1px solid; border-color : red; }
span {border : 1px solid; border-color : yellow; }
img {border : 1px solid; border-color : lime; }
....
(You may wish to tweak the color choices)

By drawing borders around each element, you can see what
the effects of padding, margin etc. on various browsers.
After everything is as yiu like it, remove the borders.
Quote:
>Has anyone else looked over this?
Yes. I plan on using HTML5 when it is completed. Until then I
advise using HTML 4.01 strict and avoiding XHTML.

--
Guy Macon
<http://www.GuyMacon.com/>

  #4  
Old October 7th, 2008, 10:15 AM
Andy Dingley
Guest
 
Posts: n/a

re: HTML 5


On 7 Oct, 01:21, Carl <c...@never.comwrote:
Quote:
http://www.w3.org/html/wg/html5/
>
I have looked over the specs but I don't see anything special that
Why are they working on HTML
Obsessional crazy people.
Quote:
when CSS has been the source of my woes? *
CSS is usually OK, it's either authors' misunderstanding of it or else
the browsers' implementation of it.

  #5  
Old October 7th, 2008, 11:05 AM
Hendrik Maryns
Guest
 
Posts: n/a

re: HTML 5


Guy Macon schreef:
Quote:
Carl wrote:
>
Quote:
>http://www.w3.org/html/wg/html5/
>>
>I have looked over the specs but I don't see anything special that
>really stands out to me.
>
http://www.ibm.com/developerworks/library/x-html5/
http://www.w3.org/html/wg/html5/diff/
http://www.webmonkey.com/blog/How_HT...anging_the_Web
>
Quote:
>Why are they working on HTML when CSS has been
>the source of my woes?
>
HTML4 is basically sound and can be improved. CSS has basic
design flaws that make it unsuitable for some layouts, and a
total redo will fail due to lack of browser support. See
[ http://www.google.com/search?q=css+sucks ].
>
That being said, there is a method that removes manu of the woes
assiciated with CSS. Make a speciual test CSS stylesheet that
has this sort of thing in it:
>
html {border : 1px solid; border-color : yellow; }
head {border : 1px solid; border-color : black; }
meta {border : 1px solid; border-color : black; }
title {border : 1px solid; border-color : black; }
body {border : 1px solid; border-color : green; }
div {border : 1px solid; border-color : red; }
p {border : 1px solid; border-color : blue; }
h1 {border : 1px solid; border-color : blue; }
h2 {border : 1px solid; border-color : blue; }
h3 {border : 1px solid; border-color : blue; }
h4 {border : 1px solid; border-color : blue; }
a {border : 1px solid; border-color : silver; }
strong {border : 1px solid; border-color : yellow; }
script {border : 1px solid; border-color : red; }
noscript {border : 1px solid; border-color : red; }
span {border : 1px solid; border-color : yellow; }
img {border : 1px solid; border-color : lime; }
...
(You may wish to tweak the color choices)
Or simply install Firebug, which does this for you at mouse hover and
lets you experiment with the CSS in place.

H.
--
Hendrik Maryns
http://tcl.sfs.uni-tuebingen.de/~hendrik/
==================
Ask smart questions, get good answers:
http://www.catb.org/~esr/faqs/smart-questions.html
  #6  
Old October 7th, 2008, 04:25 PM
Bergamot
Guest
 
Posts: n/a

re: HTML 5



Guy Macon wrote:
Quote:
>
By drawing borders around each element, you can see what
the effects of padding, margin etc. on various browsers.
After everything is as yiu like it, remove the borders.
FYI, things likely won't be spaced the same after the borders are
removed. Look up "collapsing margins".

--
Berg
  #7  
Old October 8th, 2008, 04:35 AM
Guy Macon
Guest
 
Posts: n/a

re: HTML 5





Bergamot wrote:
Quote:
>
>Guy Macon <http://www.GuyMacon.com/wrote:
Quote:
>>
>By drawing borders around each element, you can see what
>the effects of padding, margin etc. on various browsers.
>After everything is as yiu like it, remove the borders.
>
>FYI, things likely won't be spaced the same after the borders are
>removed. Look up "collapsing margins".
Good point. I had forgotten about the collapsing margins.

One can stop the margins from collapsing with 1 pixel of
padding, of course, but often the collapsing margins give
the desired spacing and non-coolapsed ones don't.

--
Guy Macon
<http://www.GuyMacon.com/>

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: xhtml 1.0, xhtml 1.1, html 4.01, or html 5.X? -Guy Macon Guy Macon answers 6 July 26th, 2008 02:45 PM
Help on HTML server control vs HTML control serge calderara answers 5 November 19th, 2005 07:30 PM
Passing values from a function generated html. cirillo_curiosone answers 1 July 23rd, 2005 01:27 PM
creating and sending html email from asp server script Francois Keyeux answers 4 July 22nd, 2005 02:20 AM