我正在尝试将一个空元素DIV与CSS中的已定义图像居中。 我想将DIV与图像对中。
很难解释。
这是现场演示http://www-kodovani.cz/test.html - 我想获得与上面文本相同的居中元素#button。我知道元素居中,但图像忽略了它。
答案 0 :(得分:0)
我认为你要找的是添加“margin:0 auto;”到div元素?
.nase-portfolio {
width: 180px;
margin: 0 auto;
height: 70px;
background: url(images/button.png) no-repeat;
}
答案 1 :(得分:0)
尝试
#button {
display: table;
margin: 0 auto;
text-align: center;
}