常忽略的css技巧

Posted hesj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了常忽略的css技巧相关的知识,希望对你有一定的参考价值。

1.利用 CSS 的伪类中的content属性获取attr中的信息

效果图:鼠标放上去出现提示

技术图片

css代码:

.box{position:relative;display:inline-block;margin:100px;}
.box:hover:after{content: attr(data-msg);position:absolute;top:100%;left:0;display:inline-block;background:rgba(0,0,0,0.8);color:#fff;border-radius:5px;line-height:25px;padding:0 10px;}
.box:hover:before{content:‘‘;border:3px solid transparent;border-bottom-color:rgba(0,0,0,0.8);display:block;position:absolute;top:100%;margin-top:-6px;left:50%;tansform:translateX(-50%);}

html代码:

<div class="box" data-msg="hahaha">43343</div>

 

以上是关于常忽略的css技巧的主要内容,如果未能解决你的问题,请参考以下文章

10个让你受益匪浅的css使用技巧

iOS常用于显示几小时前/几天前/几月前/几年前的代码片段

Android课程---Android Studio使用小技巧:提取方法代码片段

10个让你受益匪浅的css使用技巧

VS2015使用技巧 打开代码片段C#部分

26个jQuery代码片段使用技巧