0
votes
textarea with 100% width ignores parent element’s width in IE7
best thing I could find to make it work, a little hacky:
wrap textarea with [div style="width:300px;overflow:auto;"]
might want to play around with the overflow value
…
0
votes
textarea with 100% width ignores parent element’s width in IE7
Another very hacky option, if you are stuck with a lot of constraints, but know what the surrounding dom will look like:
style="width:100%;width:expression(this.parentNode.parentN …
1
vote
CSS for hover that includes all child elements
At least 2 ways of doing it:
hover states for each child, either explicitly or with * selector, as suggested by garrow .class *:hover
cascade hover state to children .clas …
0
votes
Tools for refactoring table-based HTML layouts to CSS?
I am tackling a similar problem at the moment, not quite as messy as what this sounds, but the product of really bad asp.net web forms, overblown view state, and deeply nested server controls that …
1
vote
Testing HTML/CSS/Javascript skills when hiring
We used to either set up a small brief for them to work within a certain timeframe, or in some cases contract a job to them and see how they went.
I was never that worried about making s …
0
votes
Show a PDF document in a browser without the menu bar
If you are running a machine with the .net framework you could throw together a windows forms app with an embedded web browser control, which gives you a little more control (how do they go back fr …
2
votes
Show a PDF document in a browser without the menu bar
OK - you should be able to set up most of that in the pdf document itself.
This is going from the menus in Acrobat Pro 9:
File -> Properties -> Initial View
There are some opt …
1
vote
css li menu dynamic line widths in IE6
Certain amount of hacking to make it work in IE6, because width:auto never really worked properly.
I have seen some solutions to this problem using width:1px; overflow:visible;, which mi …
0
votes
Variable (dynamic) OPTION lists in HTML SELECT using IE
Unfortunately, just won't work in IE, was face palming repeatedly on this one a few weeks ago; gave up, just put in only valid options instead.
Did find this: …
2
votes
Do you generate nicely formatted HTML?
When I'm putting together templates for a site, I start with them all nicley formatted and indented until I get it right, keep a copy of that, and then crunch the hell out of them, not quite down …
0
votes
IE does not render <A> tag properly
You should validate it first.
You have a mixture of html and xhtml, meta tags outside of the html tag, style tag without the required type attribute, to name a few, which is just gonna give …
2
votes
Unordered lists and accessability
I think it's at least partially to do with seo as well, given that html does not (yet) support any kind of navigation list element.
Using UL (or OL) gives a semantic grouping to your navi …
0
votes
Replacing header text with an image
The only problem that none of these techniques have really addressed, although it is a marginal edge case these days, is if someone has images turned off.
I have generally found the Phar …
3
votes
What CSS/JS/HTML/XML plugin(s) do you use in Eclipse?
Personally, I use the standalone community version of Aptana for that sort of thing, as I don't really use Eclipse for anything much else these days.
There is an Eclipse plugin version of …
1
vote
Who’s altering my DOM?
You might have some luck putting readonly="readonly" in the field tag, and autocomplete="off".
Not sure if browser autocomplete would be doing it, but i …
