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.

link|improve this question

feedback

3 Answers

up vote 0 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%;
}
link|improve this answer
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
feedback

With pure Markdown

Hello there!

![center](/images/hello.jpg)
###### This is an image

Hi!

[alt=center] {
    display: block;
    margin: auto;
}

h6 {
    font-weight: normal;
    text-align: center;
}
link|improve this answer
feedback

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!
link|improve this answer
4  
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
feedback

Your Answer

 
or
required, but never shown

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