1. 程式人生 > 其它 >滑鼠移入div顯示按鈕,移出隱藏按鈕

滑鼠移入div顯示按鈕,移出隱藏按鈕

技術標籤:css

滑鼠移入時:
在這裡插入圖片描述
滑鼠移出時:
在這裡插入圖片描述
實現:

  <div class="father">
       <button class="son">我是按鈕</button>
  </div>
.father{
    background-color: burlywood;
    height: 30px;
    &:hover .son{
        display: block;  // 設定父元素hover時子元素的樣式 【實現要點!!!!!】
    }
}
.son{
    background-color: cadetblue;
    height: 20px;
    float: left;     // 讓按鈕浮動在父元素上
    display: none;
}