Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
5answers
813 views

Is it a bad practice to add extra attributes to html elements?

Sometimes I add an attribute to some of my controls. Like: <a href id="myLlink" isClimber="True">Chris Sharma</a> I know it is not a valid html. But it helps me in some cases. Is this ...
7
votes
5answers
114 views

To what point is making an HTML page valid worth it?

Since a long time ago, when I found out about the W3C Validator, I made sure every HTML document I made was valid HTML. However, I think sometimes it just isn't necessary to waste time making it ...
4
votes
2answers
133 views

Where in the world are are the HTML nesting rules?

Can someone provide a link to a document that has all HTML (preferably HTML5) nesting rules? For example: you can't put a <div> inside a <p>. Thanks!
3
votes
2answers
67 views

Does the CSS block attribute affect HTML well-formedness?

An HTML <body> element can only contain block elements such as <p>. If I declare an inline element such as <span> to be display: block using CSS does that make the following HTML ...
1
vote
1answer
28 views

If there a valid way to change text styles within a hyperlink?

I am trying to validate my code as follows: <ul class="work"> <li> <a href="work1.html"> <img src="images/work_1.png" alt="Work 1 Logo" /> <h4>Lorem ipsum ...
1
vote
2answers
79 views

Is there any Javascript feature that lets you check if an element was closed?

Is there any parameter/function in JS that tells you if an element was closed with an ending tag? ... for this purpose.
0
votes
2answers
31 views

Is there a standards-compliant way to start a PHP session and echo a JavaScript script in one include() statement?

I have two scripts that I call with two PHP include() calls. The first starts a session / sets cookies, the second loads one of two JavaScript scripts. To keep things valid, I've been using the two ...
0
votes
1answer
237 views

tinymce makes invalid nested lists

Is there a way to get tinymce to generate valid html? It's generating lists like this: <li>text</li> <li>text</li> <li>text</li> <ul> ...
0
votes
3answers
202 views

Is HTML5 valid XML?

I am confused. A co-worker turned me on to the possibility that tags ending in />, such as <br /> can still be used in HTML5. I thought that only <br>-style could be used. All of the ...
0
votes
5answers
514 views

target=“new” is not opening new tab or window of my browser in OpenSocial app!

target="new" is not opening new tab or window of my browser in OpenSocial app!
0
votes
2answers
427 views

Correcting 100% Width Problem with Anchors

Ok, so I have a class that modifies the looks for a specific type of anchor that I'm using, but the problem is that the browsers keep adding the 30 pixels of padding that I have set onto the defined ...