用于iphone的css中心图像

时间:2013-04-14 18:35:33

标签: iphone css centering

Logo bere:San-Francisco-Family-Photographer.com

在iphone上,图像不会居中。

 .header-image #header #title-area {
    background: url("http://www.san-francisco-family-photographer.com/wp-content/uploads/2013/04/Joey-Chandler-Photographer-square.png") no-repeat scroll center center transparent;
    background-position: center;
    height: 130px!important;
    width: 180px!important;
}

.header-image #title-area, .header-image #title, .header-image #title a {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

感谢。

1 个答案:

答案 0 :(得分:0)

您可以将它放在div中并使其居中。

div#image {
    background: #282;
    width:130px;
    height:130px;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
}