0
A
回答
2
下面是做這件事的一種方法:
<div class="container"><span>EXAMPLE</span></div>
.container {
background: #ddd;
font-size: 30px;
width: 130px;
height: 15px;
overflow: hidden;
}
.container span {
position: relative;
top: -10px;
left: -7px;
}
注意:頂部/左側偏移量是任意單位。您需要調整它們以適應您的要求。
2
您應該將固定大小應用於包含文本的框:示例。
這之後,你應該把在中間和大小的字母文字,因此比盒子的空間較大,並應用overflow: hidden
它應該是這樣的:
.box{
width: 50px;
height: 10px;
overflow: hidden;
margin: auto;
background-color: gray;
}
.text{
color: red;
font-size: 14px;
text-align:center
vertical-align:middle;
}
+0
準確地說,我正在建議。上投了反對票。 – 2012-07-16 06:35:17
0
您可能正在尋找CSS溢出屬性。
http://www.w3schools.com/cssref/pr_pos_overflow.asp
請參見本搗鼓代碼重新上面的例子:http://jsfiddle.net/E5atK/
1
這裏是一個工作示例 http://jsfiddle.net/8CaQx/
<div id="outer"><div id="inner">TEXT</div></div>
#outer {
height: 36px;
width: 140px;
overflow: hidden;
background-color: black;
}
#inner {
position: relative;
top: -18px;
left: -10px;
font-size: 60px;
text-align: center;
vertical-align: middle;
font-family: arial, sans serif;
font-weight: 900;
color: red;
}
相關問題
- 1. Javascript - 展開div以適應內容,但不會展開容器外部
- 2. 外部容器不擴展與擴展腳本
- 3. Bootstrap圖像展開列容器外
- 4. 單槓擴展外部容器
- 5. 內容展開容器
- 6. 將容器放置在容器外部
- 7. 帶有格式的文本顯示在浮動容器外部
- 8. 瀏覽器在外部程序中打開文本/ xml
- 9. 根據內部文本展開div
- 10. jQuery:animate addClass() - 展開容器?
- 11. CSS淡入內容並順利地展開外部div AngularJS App
- 12. 在vim中展開文本
- 13. 獲取圖像以顯示在Twitter Bootstrap 4容器外部,同時文本顯示在容器內部
- 14. 展開UILabel文本
- 15. 展開div容器與內容寬度
- 16. 試圖打開外部文本文件在我的主文件
- 17. 展開多個WPF擴展器部分
- 18. 從外部鏈接展開jquery摺疊
- 19. Divs渲染外部容器?
- 20. 單擊外部SVG容器
- 21. 展開父容器之外的子元素寬度
- 22. Navbar在容器框架外部延伸
- 23. 在容器外部延伸引導行
- 24. MaterializeCSS - 顯示外部容器的內容
- 25. 在展開文字中展開文字
- 26. 展開一個div到其父容器的底部
- 27. 展望外接展開線
- 28. Eclipse外部文本過濾器
- 29. 在UIScrollView中展開內容
- 30. CSS文本對齊底部容器
文字懸停嘗試展開。 – 2012-07-16 06:31:20