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 …
4
votes
Is it possible to include one css file into another?
In some cases it is possible using @import "file.css", and most modern browsers should support this, older browsers such as NN4, will go slightly nuts.
Note: the import statement must prec …
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 …
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 …
5
votes
How to Include Multiple Javascript Files in .NET (Like they do in rails)
Also have a look at this article on codeproject:
http://www.codeproject.com/KB/aspnet/HttpCombine.aspx
…
0
votes
Keeping content in two table columns stuck to the roof of the respective table column
Since you are using a table for layout anyway, which is kinda evil, but sometimes neccessary, and often faster and cheaper, how about just setting valign="top" in the table cell markup?
I …
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 …
1
vote
Best approach for styling navigation using unordered lists in ASP.NET
Good question, I have played around with various methods of doing this since the bad old days of asp, and am yet to find the perfect hammer.
Generally I have used the Request.Url.Absolute …
0
votes
Applying image rounded corners to <li>
The construct that I have seen used most for that is a span inside a link.
so something like:
<li><a><span>Your text here</span></a></ …
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 …
