Is this valid CSS to center the div and also apply a top margin?
div {
margin: 0 auto;
margin-top: 30px;
}
|
|
yes, but with regards to centering the div you'll also want to apply |
|||
|
|
|
Use the following to specify margins:
|
|||
|
|
|
yes it is, because margin: 0 auto is setting top and bottom to 0 and left and right to auto so setting top to 30px is just the same as saying margin : 30px auto 0 auto; |
|||
|
|
|
Yes. And they're right:
I generally use 90% width as a good starting point. |
|||
|
|
|
I don't see why not...you could also shorten this to:
|
|||
|
|
|
It's valid, but it can be shorter like this:
When you only give three values, the middle value is applied to both left and right sides. |
|||
|
|
|
Yes, it's valid. Though you might wanna add a |
|||
|
|