简体   繁体   English

Div不在Div内居中

[英]Div is not centering inside Div

 .wrapper { width: 100%; height: 150px; } .iconBar div { float: left; font-size: 18px; } div.iconBar { display: table; margin: 0 auto; } .iconBar img { height: 35px; width: 35px; vertical-align: middle; } 
 <div class="wrapper"> <div class="iconBar"> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/convenient.png"> Convinient, All-Inclusive Weekly Price </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/Insurance.png"> Insurance </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/mileage.png"> Milage Allowance & Expenses </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/tractorTrailer.png"> Tractor & Expandable Trailer </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/professionalDriver.png"> Professional Driver </div> </div> </div> 

Why is my div not centering? 为什么我的div不居中? I am having trouble making the div center. 我在设置div中心时遇到了麻烦。 I tried a bunch of solutions from other people and i got it to work in one of the tests, but this one is not working? 我尝试了其他人提供的许多解决方案,但可以在其中一项测试中使用它,但是该测试无效吗?

Edit: iconBar Div, i want the text and icons to be centered. 编辑:iconBar Div,我希望文本和图标居中。 It needs to look like the bottom picture 它需要看起来像下面的图片

在此处输入图片说明

Going by your image remove float:left and add display: inline-block; 按照您的图像去掉float:left并添加display: inline-block; to .iconBar div {...} and add text-align: center; .iconBar div {...}并添加text-align: center; to div.iconBar {...} div.iconBar {...}

 .wrapper { width: 100%; height: 150px; } .iconBar div { display: inline-block; font-size: 18px; } div.iconBar { display: table; text-align: center; margin: 0 auto; } .iconBar img { height: 35px; width: 35px; vertical-align: middle; } 
 <div class="wrapper"> <div class="iconBar"> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/convenient.png"> Convinient, All-Inclusive Weekly Price </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/Insurance.png"> Insurance </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/mileage.png"> Milage Allowance & Expenses </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/tractorTrailer.png"> Tractor & Expandable Trailer </div> <div> <img src="http://eventtoursolutions.com/wp-content/uploads/2017/02/professionalDriver.png"> Professional Driver </div> </div> </div> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM