Search Results

20
votes

Why don’t self-closing script tags work?

To add to what Brad and squadette have said, the self-closing XML syntax <script /> actually is correct XML, but for it to work in practice, your web server also …
1
vote

Printing Scrolled Divs

You can't do this in plain CSS -- you will have to reimplement the scrolling using your Javascript UI library of choice to get what you want. The user state of the scrollbar isn't used when …
4
votes

Wrapping a label element within a legend element

Where is your </fieldset>? Semantically, legend describes a fieldset …
6
votes

How to embed an unobtrusive flash?

The problem is that in your document, the object/embed that contains the Flash animation is on top of the elements you need to access. You need to put these elements on to …
0
votes

How can I validate large numbers of files with search and replace?

See questions I asked in comment at top. Assuming you're using GNU sed, and that you're trying to add the trailing / to your tags to make XML-compliant & …
0
votes

How do you create non scrolling div at the top of an HTML page without two sets of scroll bars

Belugabob has the right idea that what you are trying to do is fixed positioning, which IE 6 does not support. I modified an example from the bottom of …