Tagged Questions
0
votes
1answer
26 views
Ideas on an alternative to the <nav> feature - MUST use XHTML Strict 1.0
doing a project at uni and I've completely misread the brief, used HTML5 in my project and realised that I'm not allowed to do this. Oops!
My only problem is, I've tried to convert it to XHTML Strict ...
1
vote
1answer
50 views
IE7 and display block on HTML strict
I'm having difficulties with an image taking extra space although it is set to display:block in css. This is only happening on IE7. The problem is solved when I remove all spaces between the tags in ...
0
votes
0answers
201 views
What is the real difference between strict and transitional doctype
I have read many forums which explains the difference between strict and transitional doctypes but none of them explain whether selecting strict or transitional matters when it comes to rendering a ...
0
votes
2answers
345 views
CSS - line-height:0 ignored in XHTML strict in Firefox
I'm using :first-line { line-height:0px; } to hide the empty first line in a block statement
curiously if I define doctype in XHTML strict Firefox ignores this statement and prints the empty line ...
0
votes
1answer
618 views
XSLT Refuses to write DOCTYPE declaration
I can't figure out what I'm missing here. I have a Java web app that outputs XML with the option to transform the output to XHTML. My stylesheet works fine, but for the life of me, I cannot get the ...
0
votes
1answer
205 views
Validating example code snippets in a textarea using strict XHTML
I am currently trying to post some code snippets inside of a textarea, within a strict XHTML document. I cannot for the life of me get these snippets to pass validation. I have a perfect xhtml strict ...
1
vote
2answers
462 views
Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict?
Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict?
Example:
<br/>
<input />
Are there certain tags that must have a closing tag, can be ...
2
votes
6answers
800 views
XHTML Strict is not valid because of html tags inside Javascript
I'm creating a site using XHTML Strict markup. Inside the html I need to put a js script:
<script type="text/javascript">
$(document).ready(function () { $('#nav ...
0
votes
0answers
597 views
Prevent URL being stored to browser history
I need to open a popup window to a url with certain parameters. The parameters contain information that I would like to prevent from showing up in the browser history. The url points to a 3rd party ...
1
vote
3answers
765 views
XHtml Strict, Float: Center?
I'm having hard time with Xhtml Strict 1.0 and Css. And I'm almost out of solutions.
My Site Url: http://www.pro-turk.net/beta/
I made a jquery multilevel dropdown menu for my site.
It looks like ...
2
votes
1answer
575 views
Can the rel= attribute contain any string characters and still validate?
I'm wondering because I want to store something other than pre-defined keywords that are typically assigned to rel... and I just wanted to know if this is valid XHTML Strict or not.
1
vote
4answers
316 views
Help needed with DIV-layout for site
I am trying to build a page with the following in it:
Already have the following:
one div for page to center the whole page with width 809px
inside <div class="page"> is the following:
...
13
votes
13answers
774 views
Is it worth the development time to output valid HTML?
Developing websites are time-consuming. To improve productivity, I would code a prototype to show to our clients. I don't worry about making the prototype comform to the standard. Most of the time, ...