Tagged Questions

Technologies for creating and interpreting web-based content which are carefully designed to deliver the greatest benefits to the greatest number of web users while ensuring the long-term viability of any document published on the Web.

learn more… | top users | synonyms

70
votes
27answers
35k views

How can HTML5 “replace” Flash? [closed]

A topic of debate that's seen a resurgence since the unveiling of the iPad is the issue of Flash versus HTML5. There are those that suggest that HTML5 will one day supplant/replace Adobe Flash. I do ...
62
votes
2answers
1k views

Do browsers send “\r\n” or “\n” or does it depend on the browser?

This question has bothered me for a million years... whenever I create a website with a textarea that allows multi-line (such as a "Bio" for a user's profile) I always end up writing the following ...
32
votes
7answers
1k views

Is it ok to use <strong> in place of <b> blindly?

Note: I know <b> is presentational and <span style="font-weight:bold> is a better way, and <strong> and <em> are for emphasis but my question is not regarding this. Should ...
31
votes
3answers
2k views

Why would Google use a font tag?

So, I couldn't help noticing while demonstrating Chrome's DOM browser thing to my brother, that Google uses a <font size=-2> tag. I know this is a stupid question, but from a programming point ...
23
votes
5answers
9k views

What is the proper way to URL encode Unicode characters?

I know of the non-standard %uxxxx scheme but that doesn't seem like a wise choice since the scheme has been rejected by the W3C. Some interesting examples: The heart character. If I type this into ...
21
votes
6answers
5k views

Why do some major websites use invalid HTML?

I noticed that many websites, even Google and some banking sites, have poorly-written HTML with no quotes around the values of attributes, or using characters such as ampersands not escaped correctly ...
21
votes
11answers
2k views

Why is there no OFFICIAL JavaScript reference?

I tried to search for a JavaScript reference, but there's none available. The best two suggested sources are MDC and W3Schools. Why?
20
votes
10answers
16k views

is a DIV inside a TD a bad idea?

It seems like I heard/read somewhere that DIVs inside of TDs was a no-no. Not that it won't work, just something about them not being really compatible based on their display type. Can't find any ...
19
votes
10answers
5k views

Is it valid to have a html form inside another html form

Is it valid html to have the following: <form action="a"> <input.../> <form action="b"> <input.../> <input.../> <input.../> ...
17
votes
22answers
999 views

How important is it to follow web standards?

I recently found out that most of the major websites fail W3C's markup and CSS validation tests. Therefore, how important is it really to follow web standards?
12
votes
4answers
1k views

Why <big> is not in HTML 5 Tag list while <small> is?

Shouldn't both be removed? or is it means we should use <small>? Why <big> is removed but <small> is not? What is the problem with <big> which is not a problem of ...
12
votes
5answers
2k views

Why are HTML5 and XHTML 2 separate standards?

Is there a reason why these two standards are being developed separately? They seem to be solving the same problem but what are the differences and, if they are to remain separate, what roles are they ...
11
votes
4answers
3k views

Correct use of Blockquote, q and cite?

Is this the correct use of Blockquote, q and cite? <p> <blockquote>Type HTML in the textarea above, <q>and it will magically appear</q> in the frame below. ...
9
votes
4answers
2k views

Shouldn't we use <noscript> tag?

I found some good cons here. The noscript tag only detects whether the browser has JavaScript enabled or not. If JavaScript is disabled in the Firewall rather than in the browser then the JavaScript ...
9
votes
19answers
715 views

Why don't people just stop developing sites to cater to IE6?

I don't understand why developers continue to program things to accommodate IE6. People should update the browser they use, right? I've already seen many firms completely stop developing for IE6, ...
9
votes
5answers
26k views

How to Target IE7 IE8 with CSS valid code.?

I want to Target with CSS valid code. to IE7 and IE8, Please Give me some Information about this Issue and CSS code should be W3C Valid. IE8 is here. Some time we fix for IE7 but not work in IE8.
9
votes
5answers
3k views

Example of a URI that isn't a URL?

It's been explained to me numerous times that all URLs are URIs but not all URIs are URLs. Can anyone give an example of something that is a URI but is not a URL?
9
votes
4answers
826 views

What is the state of native SVG support in the most popular browsers?

What is the state of native SVG support in the most popular browsers in their latest releases? Internet explorer Firefox Opera Safari Chrome Konqueror Camino
9
votes
8answers
1k views

What is the best way to learn about RDF / OWL?

What references offer a good summary/tutorial for using RDF/OWL? There seem to be enough tools (Protege, Topbraid, Jena, etc.) that knowing the syntax of the markup languages is not necessary, but ...
8
votes
5answers
2k views

Firefox 3 vs Firefox 4 development difference?

I was thinking of updating to Firefox 4 (currently running Firefox 3.6.15 -- hold on not a software question specifically!) and had some concerns when it comes to web development. My only concern is ...
8
votes
4answers
742 views

Learning HTML5 and CSS3

Imagine somebody today, March 1 2011, has never written a webpage and would like to know what they should read to start building web pages today. They don't care about backwards compatibility, but ...
8
votes
7answers
1k views

What are the url parameters naming convention or standards to follow

Are there any naming conventions or standards for Url parameters to be followed. I generally use camel casing like userId or itemNumber. As i am about to start of a new project, i was searching ...
7
votes
3answers
242 views

Why HTML 5 still have support for Presentational elements?

See list here: http://www.w3schools.com/html5/html5_reference.asp like <b> , <i>, <br>, <hr>, <small>? Is it means no cons to use these? But what about content and ...
7
votes
4answers
402 views

Is W3C invalid HTML and CSS code harmful for SEO and problematic for screen reader users?

If i made a site and site looking well in all a grade browsers but if site shows some errors in both XHTML and CSS validation then is there any benefit to solve those errors? Is site with 10 ...
7
votes
11answers
672 views

What browser is best for testing web standards?

When I build a site, I'd like to have at least one browser I can show it off in without any hacks or workarounds, and yet still retain maximum functionality. Knowing that none of the browsers have ...
6
votes
2answers
578 views

Semantics, standards and using the “lang” attribute for source code in markup

I haven't been able to find authorative explanations, microformats or guidelines for the following, so I'm throwing it open. If I've missed something, speak up! Let's say you have an HTML page that ...
6
votes
5answers
341 views

Web Service: Single String Parameter Or Complex Type Parameters

Is it more or less acceptable (i.e. standard) to create a publicly-exposed web service with these method signatures: ThisMethodDoesSomething(ComplexType param) ...
6
votes
4answers
777 views

What characters are allowed in the HTML Name attribute?

I have a PHP script that will generate <input>s dynamically, so I was wondering if I needed to filter any characters in the name attribute. I know that the name has to start with a letter, but ...
6
votes
7answers
1k views

Is it good to put <p> inside <td> to put content text?

Which is more semantic and valid? <td> <p> content text </p> </td> or <td> content text </td>
6
votes
1answer
974 views

how to mix links ( <a> tag ) and headings ( <h1> tag ) in web standard?

What is the correct code to create a link with heading 1 according to web standards? is it < h1>< a href="http://stackoverflow.com"> stackoverflow < /a>< /h1> or < a ...
6
votes
11answers
817 views

Absolutely positioning everything on a website?

I had a discussion with someone about absolute positioning. He claims that the best practice to secure that everything looks all the same across most browsers and that it's the easiest way to maintain ...
5
votes
6answers
277 views

input type=“submit” Vs button tag are they interchangeable?

input type="submit" and button tag are they interchangeable? or if there is any difference then When to use input type="submit" and when button ? And if there is no difference then why we have 2 tags ...
5
votes
2answers
355 views

Does HTML5 ban th cells from tbody?

I have the following markup as a part of a Razor view: <table> <caption>Presidents</caption> <thead> <tr> <th scope="col">Name</th> ...
5
votes
8answers
1k views

UI best practice question: Cancel button or Cancel link

I have a discussion with a colleague about what the "web standard" is for canceling in an form. In our discussion we have a "change password" page as example. We have a designed "send" button and ...
5
votes
1answer
1k views

Specifying the value output of of an HTML5 input type = date?

I'd like to add native date pickers to my application, which currently uses a legacy, home-rolled system. Date input support isn't widespread, yet, but if I could present both implementations based on ...
5
votes
1answer
473 views

Strict doctype - form and input element

Does anyone know the reasoning behind the strict doctype not allowing input elements to be direct descendents of a form element. I find it annoying that i have to wrap a submit button which is a ...
5
votes
2answers
420 views

What is the best way to create standards-based, cross-browser compatible rounded corners in Drupal?

I am currently working on a Drupal 6 theme, for which designer is explicitly requesting to use A LOT of rounded corners. I could of course create the rounded corners - traditionally - with images. ...
5
votes
2answers
3k views

Multiple Forms With Input Fields With The Same Name Attribute? Good Or Bad?

Is it an acceptable practice to have multiple HTML forms on a page with input fields that share the same name attribute? For example, the page contains a listing of all players and users are allowed ...
5
votes
7answers
863 views

What does an HTML E-Mail look like?

I am trying to automatically build html emails and am trying to figure out whether there are standards and what attributes in an email work and which have to exist. Do I need a ? And if no does there ...
5
votes
5answers
954 views

Are there reasons to still use the “@import” css rule?

I recently came across a use of the @import rule on Coda.com. They're actually using to import the main style sheet for the site, specifically the format: <style type="text/css" media="screen"> ...
4
votes
4answers
286 views

Which HTML version should be chosen for a public website

I am currently working on a website. After studying HTML5 and its features I want to go ahead with it. I want to use features like offline storage, data- attribs, simple chat support etc. but because ...
4
votes
2answers
83 views

Search box microformat?

Is there any microformat/standard for implementing search form on the site? (access keys, naming etc.) Any good practices?
4
votes
1answer
105 views

Extend XHTML with namespaces

I've seen this somewhere, but I don't remeber the page. I'd like to extend the HTML tags, so then I can add my own attributes to the HTML elements, I saw a example where the developer added a new ...
4
votes
3answers
382 views

Negative Margins, Hack or Not?

I've come across various posts where people are stating that negative margins are hacks. Thus I've strayed away from using them with exception to particular cases when I can justifiably use them, like ...
4
votes
5answers
154 views

What is the most standard and compatible way to make a whole table row into a link?

Obviously you can't just surround the <tr> tag with an <a> tag and call it a day; this is invalid and doesn't even work. I have seen JavaScript used, but then what happens to browsers that ...
4
votes
2answers
3k views

Which doctype should I use for GWT 2.0?

I think I should use <!DOCTYPE html> for my new GWT application; I understand that doing so will put my application into standards-compliant mode. Am I correct? Are there any disadvantages to ...
4
votes
4answers
311 views

Is separation of Content, presentation and behavior possible every time?

Is separation of Content, presentation and behavior possible every time ? Many time through javascript we add classes to html and we use in CSS visibility:hidden inline. Should we always invest time ...
4
votes
5answers
178 views

What are the practical benefits of using microformats for every possible thing?

What practical benefits can my client get if I use microformats on his site for every possible thing? How can I explain these benefits to a non-technical client?
4
votes
6answers
1k views

Why isn't my document validating as XHTML 1.1 STRICT?

While target="_blank" is deprecated but, why W3C validator not giving ant error about this .you can paste and check this code validator? http://validator.w3.org/#validate_by_input <!DOCTYPE html ...
4
votes
4answers
957 views

Can we place `<img>` inside `<h1>` according to web standards?

Can we place <img> inside <h1> according to web standards? like this <h1> Demo text <img src="anyimage.jpg"/> </h1>

1 2 3 4