Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

can I use vertical align on inline-block and block level elements?

what type of elements can I use vertical align on? I set vertical-align middle to my header li in CSS, but nothing happen. ONly when I used negative numbers did the element actucally align to middle?

2 Answers

Yes you can use vertical align on inline-block and block level elements.

Vertical Align Property Values: baseline length % sub super text-top middle bottom text-bottom initial inherit

Please add your code here and we can help you further.

http://codepen.io/sandyngomez/pen/OVoyXE?editors=110

I need to center my (ul#messageList img) element to my (#messageList li p) located on my left side of page. I have somewhat centered it with adding equal padding-bottom and padding-top, but I cannot center using vertical align property or other method?

Jeffrey Ruder
Jeffrey Ruder
6,408 Points

Here is an article that gives a decision tree for how to center horizontal and vertical elements, depending on whether they are inline block, inline, or block.

It seems like the answer is yes, but it's a little complicated.