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

在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;

いいねを押す +0
phpcn_u37517

中央に配置

いいねを押す +0
数据分析师

画像を中央に配置する方法 - PHP 中国語 Web サイト Q&A - 画像を中央に配置する方法 - PHP 中国語 Web サイト Q&A

見て回って学習してください。

いいねを押す +0
阿神

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

いいねを押す +1
刘奇

 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%的自身宽。这个时候就左右居中了。 


いいねを押す +0
迷茫

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

いいねを押す +1
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!