html - Another 'can't center content' topic -


first time using stackoverflow, sorry newbie mistakes.

here's code on codepen: http://codepen.io/ayliffe1987/pen/gjaeaz

i can't life of me, center lower section of website called 'features.'

it's in same container/wrapper div other centered content on site, wont center.

.wrapper {width: 80%;margin: 0 auto;padding: 10px;} 

any ideas? has wrapper collapsed?

thanks guys

edit: tried text-align: center in several places, no avail

add text-align:center

.features ul {     margin: 80px 0;     text-align: center; } 

remove float property & add display:inline-block;

.features ul li{     display: inline-block;     /*float: left;*/     margin-right: 10px;     padding-top: 140px;     text-align: center;     width: 300px; } 

Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -