How can I create custom tooltips with css pseudoelements

前端 未结 3 699
不知归路
不知归路 2020-12-11 09:04

I am reading css-tricks and in the end I can see the following.

Using an HTML5 data attribute, then pulling that attribute in and styling it as a ps

3条回答
  •  不知归路
    2020-12-11 09:52

    JSFiddle is here. Note: The original content is here.

    .tooltip {
      display: inline;
      position: relative;
    }
    
    .tooltip:hover {
      color: #c00;
      text-decoration: none;
    }
    
    .tooltip:hover:after {
      background: #111;
      background: rgba(0, 0, 0, .8);
      border-radius: .5em;
      bottom: 1.35em;
      color: #fff;
      content: attr(title);
      display: block;
      left: 1em;
      padding: .3em 1em;
      position: absolute;
      text-shadow: 0 1px 0 #000;
      white-space: nowrap;
      z-index: 98;
    }
    
    .tooltip:hover:before {
      border: solid;
      border-color: #111 transparent;
      border-color: rgba(0, 0, 0, .8) transparent;
      border-width: .4em .4em 0 .4em;
      bottom: 1em;
      content: "";
      display: block;
      left: 2em;
      position: absolute;
      z-index: 99;
    }

    Vestibulum mollis mauris pellentesque

提交回复
热议问题