排列菜单图像

时间:2015-02-03 13:54:27

标签: html css wordpress

我是html / css的新手。

我想为具有代表性图像的wordpress构建菜单html / css

图像没有按照自己的意愿排列......我只看到其中的3/4

这是链接

http://test.dac-proiect.ro/wp/

这是css代码

    .home3
{
background-image: url(img/HOME.png);
background-repeat: no-repeat;
background-position: left;
padding-left: 30px;

}
.expertiza
{
background:url(img/HOME.png)no-repeat;
width:186px;
height:48px;
}

.menu
{
list-style-type: none;
}
.menu li
{
display:inline;
}

1 个答案:

答案 0 :(得分:0)

添加background-positionbackground-size

.home3 {
background-image: url(img/HOME.png);
background-repeat: no-repeat;
background-position: left top;/*add this*/
padding-left: 30px;
background-size: 32px 32px;/*add this*/
}

.expertiza {
background: url(img/HOME.png)no-repeat;
width: 186px;
height: 48px;
background-position: left top;/*add this*/
background-size: 32px 32px;/*add this*/
padding-left: 32px;/*add this*/
}

enter image description here