如何使用jqmobile使图像居中

h_a*_*a86 4 html css jquery jquery-mobile

嗨我正在使用这段代码将图像置于jquery mobile中心,它将图像集中在iphone模拟器中,但是当我在iphone上检查它时,它并没有完全居中(中心本身但不完全)本身但往往向左倾斜.

<div data-role="content" data-theme="a">

   <div id="logo_image">
       <img src="images/logo.png"  alt="Image Header" >
   </div>

</div>
Run Code Online (Sandbox Code Playgroud)

而css是

#logo_image {
  text-align: center;
  margin-left:0 auto;
  margin-right:0 auto;
}
Run Code Online (Sandbox Code Playgroud)

提前致谢...

Cyr*_*llC 5

只是尝试margin: 0 auto而不是左右边距.之后您就可以设置上下边距.招呼