8
votes
Background color stretches accross entire width of ul
The a element is an inline element, meaning it only applies to the text it encloses. If you want the background color to stretch across horizontally, apply the selected class to a block level eleme …
2
votes
How to set the background-position to an absolute distance, starting from right?
There are a few ways you can do this.
Do the math yourself, if possible. You already know the dimensions of your image. If you know the dimensions of the div, you can just put the …
19
votes
How to center DIV in DIV?
You can apply this CSS to the inner div:
#inner {
width: 50%;
margin: auto;
}
Of course, you don't have to set the width to 50%. Any width less than the co …
17
votes
Best css reset
I use Eric Meyer's CSS reset, as do many other people. It's even the reset script that …
4
votes
Problem with :hover in IE7
IE7 won't allow you to apply :hover pseudo-classes to non-anchor elements unless you explicitly specify a doctype. Just add a doctype declaration to your page and it should work perfec …
