我想在css中叠加两个文本。
我写了这个:
HTML:
<div id="container" >
<span id="w1" >One text</span>
<span id="w2" >And another superimposed to the first</span>
</div>
CSS:
#container
{
position:relative;
}
#w1,#w2
{
position:absolute;
top:0px;
left:0px;
}
但我想让这两个文本水平居中。(像那样,但叠加)。
我该怎么做?