鼠标移上去显示内容

Posted 知行合一

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了鼠标移上去显示内容相关的知识,希望对你有一定的参考价值。

<style type="text/css">
a {
    position: relative;
}

a div {
    display: none;
    color: red;
    width: 200px;
    height: 200px;
    background-color: #FF0;
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: default;
}

a:hover div {
    display: block;
}
</style>
<a href="#">
    aaa
    <div>aaaa</div>
</a>

以上是关于鼠标移上去显示内容的主要内容,如果未能解决你的问题,请参考以下文章