img如何居中?
小白
小白 2017-03-01 09:47:52
0
6
4186

在div中写入 text-align:center 里面的img可以居中

<div style="width:600px;heigth:800px;border:2px solid red;text-align:center">
<img src="timg.jpeg" style="width:200px;height:200px;">
</div>

我想在img中设置属性,这样设置不行

<div style="width:600px;heigth:800px;border:2px solid red">
<img src="timg.jpeg" style="width:200px;height:200px;display:inline-block;text-align:center">
</div>

请问,有无办法在img中设置属性,不在div中设置text-align:center  ,使得这个img居中?

测试过了,不可以使用;margin:0 auto

<div style="width:600px;heigth:800px;border:2px solid red">
<img src="https://s25.postimg.org/8nw251b8f/timg.jpg" style="width:200px;height:200px;display:inline-block;margin:0 auto">
</div>
小白
小白

好好学习,天天向上!!!

모든 응답(6)
枫铖

div를 감싸고 div 여백을 중앙에 배치합니다:0 auto;

phpcn_u37517

중앙에 두세요

数据分析师

img를 센터링하는 방법 - PHP 중국어 웹사이트 Q&A - img를 센터링하는 방법 - PHP 중국어 웹사이트 Q&A

둘러보고 알아보세요.

阿神

 text-align:center 这个属性作用的对象的是父层下面的子元素的居中对齐,
如果你用text-align:center 让img直接居中的话,因为没有参考的对象,他无法使用这个属性来决定怎么居中,位置该怎么放
你可以使用margin 来实现居中 

刘奇

 img中控制样式的话, 就用position。

<div style="width:600px;heigth:800px;border:2px solid red;">
<img src="timg.jpeg" style="width:200px;height:200px;position:relative;left:50%;margin-left:-100px;">
</div>
就是将图片left设置为50%。这个时候,图片左侧是在中间的。然后设置margin-left:-100px; 这样,就把图片向左移动了50%的自身宽。这个时候就左右居中了。 


迷茫

img的样式应该为width:200px;height:200px;display:block;margin:0 auto;
img是个特殊的内联元素。可以设置长宽,跟button类似。margin:0 auto居中只能于作用块级元素。故img设置了display:block;margin:0 auto即可居中

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!