On 2013-04-25, SMH wrote:
>
> This is about getting images larger than the width of a column of justified
> text
Justified text? Eeewww!
> to center beyond the width (left and right margins) of the text column.
>
> What I use works: I just want to know if it can be done better (less
> effort, less markup, benefits of long experience).
>
>
> I have a simple format in which the DIV(class="content-div") element
> containing all content (text, images, etc) is centered within the BODY
> element by using
>
> .content-div {
> margin:0 auto;
> width: 40em;
> }
I'd get rid of the DIV (or make it wider and set a width on the
text elements).
...
<body>
<p>
.text
</p>
<p style="margin:1em -20%;">
<img src="an-image.png" alt="description">
</p>
<p>
.resuming the text flow
.
</p>
</body>
--
Chris F.A. Johnson
<
http://torontowebdesign.cfaj.ca/>