這是一個奇怪的問題,但我得到了一個html文件,它具有標籤的B標籤和列表的單獨ol標籤。CSS - 在元素E2上懸停時顯示元素E1
像這樣
<b> Title of the list </b>
<ol>
<li> List item 1 </li>
<li> list item 2 </li>
</ol>
我希望做的是,節目列表,當鼠標懸停稱號。我該怎麼做呢?
現在這就是我所擁有的。
ol
{
visibility: none;
}
我需要找到這部分
b:hover
{
/*something that shows the ol list */
}
是否確定要使用'visibility'了'display' ? –
可能重複[如何更改一個元素,而徘徊在另一個](http://stackoverflow.com/questions/8614423/how-to-change-one-element-while-hovering-over-another) – Pavlo