0

我在我非常简单的css文件中有这个问题,我想div75pxinheightwidthwith转换 a :hover,但它似乎只改变width.

#ich{
    transition: 2s;
    -moz-transition: 2s; /* Firefox 4 */
    -webkit-transition: 2s; /* Safari and Chrome */
    -o-transition: 2s; /* Opera */

    margin-top:40%;
    width:75px;
    height:75px;
    border-radius:35px;
    background-image:url(fb.jpg) ;
    background-repeat: no-repeat;
    background-position: center;
    text-align:center;
    display:block;
}

#ich:hover{
    width:300px!important;
    height:300x!important;
    background-size: 300px 300px;
}

HTML 只是一个div带有 id#ichbody部分,没有别的。

4

1 回答 1

6
height:300px!important;

您只需输入“300x”而不是“300px”

于 2012-12-19T16:25:47.233 回答