Display Text Over SVG Element On Hover

前端 未结 4 436
陌清茗
陌清茗 2020-12-17 22:22

So I have a simple SVG element (copied below), and I want to display text (currently within the data-label attribute) when the rectangle with the bar

4条回答
  •  猫巷女王i
    2020-12-17 23:06

    Try this, I think is more convenient way to do it:

    nav {
        position: absolute;
        top:-11px;
    }
    
    ul {
        position: relative;
    }
    nav li {
        display:inline;
    }
    nav a {
        display:inline-block;
        visibility: hidden;
        padding-right:5px;
        text-decoration:none;
        color: white;
    }
    ul li:hover a {
        visibility:visible;
    }
    
      
      
    
    

提交回复
热议问题