![[已解決][css]文字於 div 內對齊問題](http://attach.mobile01.com/attach/201503/mobile01-097cfadb1d89ea610dcc72cc8e3bb2f5.png)
但我希望能呈現效果如下圖,不知道有沒有辦法達到呢?
![[已解決][css]文字於 div 內對齊問題](http://attach.mobile01.com/attach/201503/mobile01-d4d4f11b32a654e051b7a06b4a88fc99.png)
想請教各位高手們...

--------------------------- 以下已試出方法
<style type="text/css">
#container{
position: absolute;
overflow: hidden;
text-align: center;
height: 26px;
}
#mydiv{
margin: 0 auto;
width: 60px;
height: 20px;
border: 3px solid #000;
}
#content{
margin-top: -20px;
}
</style>
<body>
<-div id="container">
<-div id="myDiv"><-/div>
<-div id="content">1234567890123<-/div>
<-/div>
</body>