1
vote
5
votes
Should I avoid using “text-align: justify;”?
text-align: justify shouldn't be used in browsers at the moment. They aren't good at handlin …
5
votes
Who has solved the long-word-breaks-my-div problem? (hint: not stackoverflow)
I just found out about hyphenator from …
2
votes
css: Should I limit the use of universal selectors (*.classname vs a.classname)?
In my opinion, it's really up to you. One way is shorter, but the other is more precise although reliant on the markup staying mostly the same. If it's a complex project, then maybe being more spec …
0
votes
word wrap in css / js
This has been talked about a bit lately:
/questions/315845/should-i-avoid-using-text-align- …
0
votes
CSS Layouts - How to position two divs horizontally within another div
Or if you want to ditch older browsers, try css tables.
…
1
vote
2
votes
What is the most efficient way to give the active page’s menu item a “selected” id to change the CSS?
You can assign a class or id to the <body> element relating to what the current page is. Then style each page's local navigation and so on using this. Give each navigation list i …
2
votes
Do you know of a resource that lists all the font-families with their fall-backs that are good on the web?
Here is another blog post on font stacks, it's a good one too.
…
0
votes
Designing image gallery in CSS
Blueprint CSS will be fine. You'll need to get your hands dirty though, Blueprint won't do all the work in designing a gallery.
…
1
vote
Alignment Problem with IE
You'll need to use conditional comments to give IE specific styles. You may also want to try out …
3
votes
What can’t be done in CSS yet?
There are lots of other ways to make a table-like layout. There are even CSS tables. Really, there's never a reason …
1
vote
CSS margin-bottom collapsed - but why?
If you want 2000px of blue beneath the 400px div, make this change:
Change the height of the containing div to be the height of it's contents + the 2000px space.
&l …
0
votes
UL list style not applying
All I can think of is that something is over-riding this afterwards.
You are including the reset styles first, right?
…
8
votes
Is it possible to set CSS for combined classes?
You can do this:
tr.even.highlight { ... }
Not known by IE6 though.
…
