1
A
回答
4
- 在
data-*
屬性中存儲相同的文本。 - 將它放在與
::before
或::after
僞元素完全相同的文本上。 - 懸停時將其高度動畫至
0
。
.text {
display: inline-block;
vertical-align: top;
position: relative;
line-height: 40px;
font-size: 30px;
cursor: pointer;
margin: 20px;
color: gold;
}
.text:before {
transition: height 0.5s ease;
content: attr(data-text);
position: absolute;
overflow: hidden;
height: 40px;
color: black;
left: 0;
top: 0;
}
.text:hover:before {
height: 0;
}
<div class="text" data-text="Some text here">Some text here</div>
相關問題
- 1. Css坍塌填充底部
- 2. 從其底部的文本中刪除填充文本
- 3. Bootstrap中填充底部的css錯誤?
- 4. css「position:fixed; overflow:auto;」壞底部填充
- 5. CSS中的神祕底部填充
- 6. CSS填充底部似乎不工作
- 7. 填充樹底部
- 8. 底部IE6額外填充
- 9. UITextView可以從底部開始填充文本嗎?
- 10. 底部填充div錯誤
- 11. listView將不會從底部填充
- 12. 的UITextView與底部填充
- 13. 底部填充,不DIV
- 14. jQuery動畫底部填充
- 15. 在底部設置填充
- 16. CSS填充文本字段
- 17. 文本填充顏色CSS
- 18. 帶有CSS的條形圖,如何從底部到頂部填充,而不是從頂部到底部?
- 19. 花式框填充(頂部和底部)
- 20. 爲什麼外部填充底部和/或邊緣底部?
- 21. 使用Modernizr來填充CSS轉換
- 22. CSS一致的頂部/底部填充框
- 23. 導航欄頂部和底部填充通過CSS
- 24. 填充底部,最大高度
- 25. css - 將填充應用於帶滾動的框,底部填充不起作用
- 26. 頂部/底部填充的微調
- 27. 填充頂部和底部ErrorProvider控件
- 28. 填充底部出現意外
- 29. 填充底部,文本只在列表中
- 30. 填充整個底部的頁腳
這是非常涼爽,尤其是該內容:ATTR(數據文本); – LeBlaireau