0
votes
Keeping my PHP pretty
Doing that, however, makes my php code look horrific... it really messes with the formatting and "shape" of the code. How should I get around this?
Treat your P …
3
votes
table layout wrong in IE(7)
I assume you are complaining about the minimal height of the middle row (the one containing only rowspanned cells), and the enlarged height of the adjacent rows to compensate, leaving gaps between …
4
votes
Make html validation part of build cycle
You can download and install your own copy of the validator - http://validator.w3.org/source/ - and invoke it locally instead of trekkin …
1
vote
Keep resizing text from pushing the other elements in its container around?
Not sure who -1ed, but Mauro's answer is essentially correct: you can't trivially make an item with automatic width depend on what the width would have been if the font inside weren't bold.
…
2
votes
How can I create a menu in HTML without using Javascript?
Consider using the CSS methods as a backup for when JavaScript is unavailable. JavaScript can* provide a better user experience for drop-down menus because you can add some delay factors to stop me …
0
votes
Embedding html code in stored procedures
Yes, I have seen many people do it, unfortunately. You're right though: it is vile.
Usually layer-separation problems are when two adjacent layers mix - you get business logic in the databa …
5
votes
Invoking javascript in iframe from parent page
There are some quirks to be aware of here.
HTMLIFrameElement.contentWindow is probably the easier way, but it's not quite a standard property and some browsers don't support it, mo …
15
votes
CSS div element - how to show horizontal scroll bars only?
You shouldn't get both horizontal and vertical scrollbars unless you make the content large enough to require them.
However you typically do in IE due to a bug. Check in other browsers (Fir …
0
votes
How to update HTML “select” box dynamically in IE
Set the width of the select box explicitly, using eg. a CSS ‘width’ style, instead of letting the browser guess the width from its contents.
…
6
votes
What is the best way to insert HTML via PHP ?
-1 for the typical hysterical ‘use [my favourite templating system] instead!’ posts. Every PHP post, even if the native PHP answer is a one-liner, always degenerates into this, just as every one-li …
4
votes
Remove the Query String from a Url in HTML with a Regular Expression
You can't usefully parse HTML with a regexp. If you know the format of the page in advance — eg.
links are always in the form < a href="url with no unnecessary character escapes">, …
1
vote
How to set the focus to the first input element in an HTML form independent from the id?
document.forms[0].elements[0].focus();
This can be refined using a loop to eg. not focus certain types of field, disabled fields and so on. Better may be to add a class="a …
0
votes
Parsing PlainText Emails from HTML Content (ASP.NET)
You could ensure the HTML mail is in XHTML format so you can parse it easily using the standard XML tools, then create your own DOM serialiser that outputs plain text. It'd still be a lot of work t …
18
votes
What problem does XHTML strict solve?
XHTML1 vs HTML4 and Strict vs Transitional are completely orthogonal issues.
XML might not give any huge advantage to browsers today, but on the server end it's an order of magnitude easier …
1
vote
Centering a div block without the width
An element with ‘display: block’ (as div is by default) has a width determined by the width of its container. You can't make a block's width dependent on the width of its contents (shrink-to-fit). …
