CSS:帶有標題
回答
你並不需要一個僞元素:
<p class="hover-me" title="I Show up on Hover">Some Text</p>
但是,如果你需要使用一個僞元素
HTML
<p class="hover-me" data-title="I Show up on Hover">Some Text</p>
CSS
p {
background:lightblue;
padding:15px;
margin:15px;
position: relative;
}
p:hover:after {
position: absolute;
content:attr(data-title);
left:0;
top:0;
width:200px;
height:1.25rem;
background-color: blue;
color:white;
}
反正你不能給一個psuedo元素一個title屬性,另外如果你正在嘗試,它建議這個內容應該在你的標記開始。 –
我同意一般,但它取決於額外的內容'is。 –
用途:
div:hover:before{
content: "Bye";
}
很確定':hover'是一個僞選擇符,而不是僞元素;您需要使用':before'或':after'之類的東西來使用['content'](https:/ /developer.mozilla.org/en-US/docs/Web/CSS/content)。 – SlightlyCuban
的規避這一點,是有兩個僞元素。
例如,::後是主元件和::之前將顯示在懸停被和作用就像一個標題。
另外,您可以使用javascript或jQuery代碼來檢測僞元素上的鼠標事件。
貝婁是演示的解釋:
$('.alert').on('mousemove', function(e) {
if (e.offsetX > (this.offsetWidth - 42)) { //42 is the ::after element outerWidth
$(this).addClass('hover');
} else {
$(this).removeClass('hover');
}
}).on('mouseleave', function(e) {
$(this).removeClass('hover');
}).on('click', function(e) {
if (e.offsetX > (this.offsetWidth - 42)) { //42 is the ::after element outerWidth
$(this).remove();
}
});
.alert {
padding: 15px;
margin: 50px 0 20px;
border: 1px solid transparent;
border-radius: 4px;
position: relative;
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
font-size: 0.85em;
transition: all 1s;
}
.alert::after, .alert::before {
content: 'X';
position: absolute;
right: 0;
top: 0;
width: 40px;
height: 100%;
font-size: 0.85em;
padding: 0;
line-height: 40px;
text-align: center;
font-weight: 900;
font-family: cursive;
cursor: pointer;
}
.alert::before {
display: none;
content: 'This is a Title';
top: -105%;
width: auto;
border: inherit;
border-radius: inherit;
padding: 0 0.4em;
background: rgba(0, 0, 0, 0.48);
color: white;
}
.alert.hover::after {
color: white;
filter: sepia(10%);
transform: scale(1.1);
border-radius: inherit;
border: inherit;
background: inherit;
}
.alert.hover::before {
display: inline-block;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="alert">
<strong>Hover</strong> over X to display the title.
</div>
問題是CSS,所以沒有JS解決方案。另外,你的'這是一個標題'是在CSS中,而重點是把它放在HTML本身中(這樣它也可以做'標題'作業) –
僞元素不能有標題,所以我的回答只是對那些仍然想使用僞元素的人的建議! – Amr
- 1. 的CSS - 邊欄帶有固定標題
- 2. 帶有標題
- 3. 帶鏈接按鈕的CSS標題
- 4. 使用css的標題色帶
- 5. css,帶垂直標題的表
- 6. 帶有標題的ListView
- 7. 帶有行標題的Gridview
- 8. 帶有標題疊加的CSS框,最佳實踐?
- 9. 將標題設置爲帶有CSS的元素
- 10. 使用CSS創建帶有固定標題的可滾動div
- 11. 帶有Javascript問題的Css動畫
- 12. 帶有陰影的CSS列問題
- 13. Rails 3.1按鈕帶有css的圖標
- 14. CSS,選擇帶有結尾的標籤「*:」
- 15. 帶有圖標的CSS Bootstrap 3.0字段
- 16. 帶標題的UITabBarController標題
- 17. CSS標題標記問題
- 18. Css標題問題
- 19. 標題在CSS
- 20. 標題CSS破
- 21. CSS漸變帶問題?
- 22. CSS:帶有下拉
- 23. 帶對象標籤的css
- 24. 帶有標題的Android列表視圖
- 25. 帶有固定標題的ASP.NET Gridview tablesorter
- 26. 帶有標題連接錯誤的WebView
- 27. 帶有標題的Android LazyLoading Gridview圖像?
- 28. 帶有「靜態」標題的UITableView
- 29. 帶有標題視圖的Android ListView
- 30. alamofire:帶有標題的POST請求
真不明白:你能告訴一個例子嗎? – fcalderan
你不能用CSS來做,使用jquery'mouse enter' –
檢查這個http://stackoverflow.com/questions/5865937/using-before-and-after-css-selector-to-insert-html –