emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: emacs-org list <emacs-orgmode@gnu.org>
Subject: Re: [HTML export] How to display images side by side?
Date: Fri, 11 Oct 2013 15:53:49 +0200	[thread overview]
Message-ID: <m261t3lxqq.fsf@polytechnique.org> (raw)
In-Reply-To: <m27gdkkkpr.fsf@polytechnique.org>

Hello again,

alan.schmitt@polytechnique.org writes:

> Hello,
>
> I'm trying to display a bunch of images side by side, as if they were
> text (and would reflow when the window is too small).

I found a way to do it using CSS. Here is the org file that is exported
to html (note that I no longer have the style attribute, and I give the
surrounding node to give the context assigning the class).

--8<---------------cut here---------------start------------->8---
** Sponsors
  :PROPERTIES:
  :HTML_CONTAINER_CLASS: sponsors
  :END:

The workshop is kindly sponsored by:

#+attr_html: :height 60px
[[http://www.google.com/][file:images/Google_Logo.png]]

#+attr_html: :height 70px
[[http://www.janestreet.com/][file:images/Jane_Street_Logo.jpeg]]

#+attr_html: :height 50px
[[https://research.microsoft.com/][file:images/MSR_Logo.jpg]]
--8<---------------cut here---------------end--------------->8---

To get the alignment working properly (with images aligned at the
center), I then put the following in my style.css:

#+begin_src css
.sponsors .figure {
    display: inline;
}

.sponsors .figure p {
    display: inline;
}

.sponsors .figure img {
    vertical-align: middle;
}
#+end_src

If you simply want a vertical list of images, you can simply override
the setting for .figure p:

#+begin_src css
.sponsors .figure p {
    text-align: left;
}
#+end_src

Alan

      reply	other threads:[~2013-10-11 13:53 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-11 13:20 [HTML export] How to display images side by side? Alan Schmitt
2013-10-11 13:53 ` Alan Schmitt [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m261t3lxqq.fsf@polytechnique.org \
    --to=alan.schmitt@polytechnique.org \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).