63
votes
What is the best CSS Framework and are they worth the effort?
CSS 'frameworks' are completely missing the point.
CSS is not like JavaScript, where you can include a base library/framework and then call functions and objects from it to do higher-level …
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 …
14
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 …
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). …
1
vote
Is there really any point to using relative font sizing in CSS?
Apart from the ability to resize in IE6 (which is still, alas, a very popular browser), relative fonts give you a greater likelihood of matching the user's needs by default without them having to r …
4
votes
Setting CSS pseudo-class rules from JavaScript
You can't style a pseudo-class on a particular element alone, in the same way that you can't have a pseudo-class in an inline style="..." attribute (as there is no selector).
You can do it …
3
votes
Use double classes in IE6 CSS?
If I use (like I wrote in the question), tag-specific rules, like .LeftContent a.MenuButton.Orange, it works...
It only matches them if the classes in the selector are in …
2
votes
Firefox 3 adds spacing to spans with display:inline-block
I don't suppose there's a way to allow spans on multiple lines in the markup while not having them render the space?
Not exactly, but:
<span& …
3
votes
Horizontal scroller in CSS
Does anyone know any code to have scrollable content in a div in a fluid css layout design?
'overflow: auto' will add the scroll bar when necessary.
The …
0
votes
What is better: CSS hacks or browser detection?
Personally, I have found this to be quite time consuming to find all of these hacks and test them; each change you make you have to test in 4+ browsers to make sure it didn't break a …
2
votes
debugging javascript for IE6
"Expected ':' (default2.aspx,16)" - on line 16 there is nothing that can possibly expect a ":"
The error won't be on line 16 of your .aspx file, probably not ev …
2
votes
<input type=”file” /> opens file browse window in FireFox3 when clicking the form field part?
How can I prevent the file browsing window from opening in FireFox when a user clicks on the textbox area?
Obscure it with another element.
< …
1
vote
List of CSS features not supported by IE6
In addition to the things mentioned, make sure you use a doctype that makes IE6+ use Standards Mode. The bugs and hacks are just about manageable in Standards Mode without having to have a complete …
2
votes
Text size for drop down menu/input select not working in Safari
It appers select controls are non-stylable in Safari; it always uses its own OS X-style widget drawing routines to display them. Until recently, this was the norm: browsers would typically use plai …
