Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to end up with:

Hello there!

      <image>
      This is an image

Hi!

Where the image and the text This is an image are centered on the page. How do I accomplish this with Markdown?

Edit: Note that I'm looking to horizontally center the image and text on the page.

share|improve this question

4 Answers

up vote 4 down vote accepted

You need a block container with a defined height, same value for line-height and image with vertical-align:middle; It should work.

Hello there !

<div id="container">
    <img />
    This is an image
</div>

Hi !

#container {
    height:100px;
    line-height:100px;
}

#container img {
    vertical-align:middle;
    max-height:100%;
}
share|improve this answer
1  
Can I use Markdown syntax inside the div? – Chetan Oct 12 '10 at 9:43
I think Markdown is not used for positionning – MatTheCat Oct 12 '10 at 12:09
Oh, I was looking for horizontal centering. – Chetan Oct 12 '10 at 20:24
@Chetan I don't believe you can. Once you go into HTML mode by opening a tag, only HTML goes through until you close that tag, and then the parsing goes back to markdown mode. – Jason Mar 13 at 16:46
Note: This same method can be used for horizontal centering as well. – Chetan Mar 18 at 17:05

If you are using kramdown, you can do this

Hello there!

{:.center}
![cardinal](/img/2012/cardinal.jpg)  
This is an image

Hi!

.center {
  text-align: center;
}
share|improve this answer

This is quite simple really.

-> This is centered Text <-

So taking that in mind you can apply this to the img syntax.

->![alt text](/link/to/img)<-
share|improve this answer
1  
Which dialect of markdown is this? It is not a syntax I have ever come across. – Jason Mar 8 at 0:56
hmm, not sure, it's true that's not in the daring fireball docs... – vdclouis Mar 13 at 12:51
I know that Jekyll supports this – kangax May 14 at 15:04

I figured that I'd just have to use HTML where I want to horizontally align anything.

So my code would look like this:

Hello there!

      <center><img src="" ...></center>
      <center>This is an image</center>

Hi!
share|improve this answer
6  
The <center> element is deprecated in HTML4 since 1998. Just use CSS to make it or its wrapper a block element with a fixed width and margin: 0 auto; on it. – BalusC Oct 17 '10 at 21:13
2  
Deprecated doesn't mean it can't be used. Chetan has given a valid suggestion. I don't think he deserves his current -12 rating for this comment. – Matthieu Cormier Dec 14 '12 at 19:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.