1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
| <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Tooltips</title> </head> <body> <div> <ul class="container"> <li class="tootips" title="花花">花花</li> <li class="tootips" title="草草">草草</li> <li class="tootips" title="葱葱">葱葱</li> <li class="tootips" title="生生">生生</li> </ul> </div> </body>
<style> .container { height: 100px; width: 1000px; padding: 30px 200px; background-color: azure; text-align: center; } .tootips { position: relative; float: left; width: 80px; margin-right: 20px; background-color: antiquewhite; } .tootips:hover::before{ position: absolute; content: attr(title); height:20px; text-align: center; left:25px; top: -20px; word-break: keep-all; background-color: antiquewhite; } </style> </html>
|