I'll let you see the code first then tell you what my problem is:
Tinkerbin: http://tinkerbin.com/x8iGCFsZ
<style>
div.container{
height: 200px;
width: 200px;
background-color:red;
margin-top: 10px;
}
div.subContainer{
position: relative;
text-align: center;
}
div.inner{
position: absolute;
background-color:yellow;
width: 150px;
}
</style>
<div class="container">
<div class="subContainer">
<div class="inner">bananas for breakfast</div>
</div>
</div>
So, according to the textbook, "text-align: center;" when applied to a parent element, only centers it's child elements if they have "display:inline;"
Therefore, and as you'd expect, since a div has by default display set to block ("display:block;") the "text-align: center;" applied to the parent div.subContainer doesn't do anything to it's child div.inner.
Everything fine so far. Nothing weird.
My problem arouses when I try using span, instead of div on the .inner element, and I absolutely position it ("position: absolute;") - which, as you know force changes the display, from it's default inline, to block.
Take a look:
<style>
div.container{
height: 200px;
width: 200px;
background-color:red;
margin-top: 10px;
}
div.subContainer{
position: relative;
text-align: center;
}
span.inner{
position: absolute;
background-color:yellow;
width: 150px;
}
</style>
<div class="container">
<div class="subContainer">
<span class="inner">bananas for breakfast</span>
</div>
</div>
What happens is weird. In spite of having the forced display value of block (thanks to the position: absolute;) the span is still centered. And even more, the centering is actually weird. It takes the left side of the block and aligns it with the center of the containing element, instead of, as usual, aligning both center.
The behavior is fixed - starts acting like a block - when I manually set the display on the span.inner to block.
span.inner{
position: absolute;
display: block;
background-color:yellow;
width: 150px;
}
So, what's happening here? Does the absolutely positioning not force change the display to block? Why is the centering weird?

