I want to center the speaker div, which is within the review div. i cannot seem to get it working. :(
HTML:
<div class="review">
<div class="speaker">
<p>SPEAKER DIV</p>
</div>
</div>
CSS:
.speaker{
align:center;
}
This doesn't work :/
|
|
|
Give it a width and margin:0 auto;
|
|||
|
|
|
There’s no such CSS property as When you say you want to “center” the speaker div, what exactly do you mean? You can center-align its text like this:
(See http://jsfiddle.net/pauldwaite/X7LN5/) If, alternatively, you want the speaker div to only be as wide as its text, and be positioned in the center of the review div, then you’d need to use this:
|
||||
|
|
|
There is no |
|||
|
|
|
Thats because that syntax does not exist. You need to center the div via the
|
||||
|
|
|
... now how put to center ... |
|||
|
|
|
I'm about a year late to the party, but here goes: In most browsers, this will work:
However, in IE8 and below, the In that case, you can use a combination of
The downside to this method is that you have to declare a width, or it won't be centered. Good luck! |
|||
|
|