473,473 Members | 1,861 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Centering Image in <DIV>

CJM
I've inserted a new banner in an existing page and I want the banner image
to be centered (horizontally) within its container. I'm not bothered whether
the accompanying line of text is restricted to the width of the image and
centered, or whether is simply fills the width of the container.

I've tried various things to achieve this (e.g setting margins to auto) but
I'm not having much luck.

The URL for the page is: http://www.eminox.es

And the key stylesheet is: http://www.eminox.es/_lib.css/home.css

The containing DIV has the following styling:

..hl06 {
width:510px;
height:100px;
position: absolute;
top: 66px;
left: 230px;
font-size: 75%;
padding: 4px 10px;
}

And the relevant HTML snippet is:

<div class="hl06 yellow">
<img src="/home/images/fiaa_468x60.gif" height="60" width="468" alt="FIAA
Feria de madrid 14 - 17 Octubre 2008, Pabellón 9 Puesto C27">
Visítenos en la <strong>Feria Internacional del Autobús y Autocar</strong>
en Madrid, del 14 al 17 de octubre <strong>Pabellón 9 Puesto C27</strong>.
</div>

As you can see, the container is 51-px wide, and the image is 470px wide; I
considered manually fixing the position, but I'd prefer to master a more
fluid technique. I've stripped out the abortive crap from previous attempts,
so hopefully it's as near to a blank canvas as we will get.

Thanks in advance.

CJM
Oct 2 '08 #1
9 2478
On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
I've tried various things to achieve this (e.g setting margins to auto) but
I'm not having much luck.
CSS has two notions of "centring"

Block-behaving elements will center if you set their own margins to
auto.

Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e. the
<div>) instead.
Oct 2 '08 #2
CJM


"Andy Dingley" <di*****@codesmiths.comwrote in message
news:4f**********************************@m74g2000 hsh.googlegroups.com...
On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
>I've tried various things to achieve this (e.g setting margins to auto)
but
I'm not having much luck.

CSS has two notions of "centring"

Block-behaving elements will center if you set their own margins to
auto.

Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e. the
<div>) instead.
I'd considered text-align, but I don't want the text part of it centered.

So I wrapped the the whole lot in a <spanand set it's margins to auto and
it's width to 470px, but that didn't work either.

Oct 2 '08 #3
CJM wrote:
"Andy Dingley" <di*****@codesmiths.comwrote in message
news:4f**********************************@m74g2000 hsh.googlegroups.com...
>Block-behaving elements will center if you set their own margins to
auto.

Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e. the
<div>) instead.

I'd considered text-align, but I don't want the text part of it centered.

So I wrapped the the whole lot in a <spanand set it's margins to auto
and it's width to 470px, but that didn't work either.
I had a similar problem which I solved by setting both "text-align: center"
on the containing box and "margin: 0 auto" on the img itself. If you don't
want the text centered, you could either set "text-align: left" for the
text (and have that rule after the div text-align rule) or have the image
and the text each in their own <divcontainer.

Have you tried "display: block" for the img to make it behave as a block?

Irina

--
"Of course it is happening inside your head, Harry, but why on earth
should that mean that it is not real?" --Albus Dumbledore
http://www.valdyas.org/foundobjects/index.cgi Latest: 01-Oct-2008
Oct 2 '08 #4
Gazing into my crystal ball I observed "CJM" <cj*******@example.com>
writing in news:6k************@mid.individual.net:
>

"Andy Dingley" <di*****@codesmiths.comwrote in message
news:4ff25660-ff45-43d0-afa3-9c914f5192f3
@m74g2000hsh.googlegroups.com.
..
>On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
>>I've tried various things to achieve this (e.g setting margins to
auto) but
I'm not having much luck.

CSS has two notions of "centring"

Block-behaving elements will center if you set their own margins to
auto.

Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e.
the <div>) instead.

I'd considered text-align, but I don't want the text part of it
centered.

So I wrapped the the whole lot in a <spanand set it's margins to
auto and it's width to 470px, but that didn't work either.

Span is inline. Use a block level element, or display an inline element
as block.

--
Adrienne Boswell at Home
Arbpen Web Site Design Services
http://www.cavalcade-of-coding.info
Please respond to the group so others can share

Oct 2 '08 #5
CJM wrote:
So I wrapped the the whole lot in a <spanand set it's margins to
auto and it's width to 470px, but that didn't work either.
Because a span is in-line and not a block. In-line elements cannot be
centered. Centering something that is in-line does not make sense. If
you want an image inside a div to be centered, but not the text inside
the div, you may need to place the image and text inside thier own divs.
Oct 2 '08 #6
CJM wrote:
>

"Andy Dingley" <di*****@codesmiths.comwrote in message
news:4f**********************************@m74g2000 hsh.googlegroups.com...
>On 2 Oct, 17:41, "CJM" <cjmn...@removeme-yahoo.co.ukwrote:
>>I've tried various things to achieve this (e.g setting margins to
auto) but
I'm not having much luck.

CSS has two notions of "centring"

Block-behaving elements will center if you set their own margins to
auto.

Inline-behaving elements (and this includes <imgwith default CSS
settings) will respond to setting text-align on their parent (i.e. the
<div>) instead.

I'd considered text-align, but I don't want the text part of it centered.

So I wrapped the the whole lot in a <spanand set it's margins to auto
and it's width to 470px, but that didn't work either.

<span class="banner"><img style="display:block;margin:auto;" src="......

--
Gus
Oct 2 '08 #7

Gus Richter wrote:
CJM wrote:
>>
I'd considered text-align, but I don't want the text part of it centered.

So I wrapped the the whole lot in a <spanand set it's margins to auto
and it's width to 470px, but that didn't work either.

<span class="banner"><img style="display:block;margin:auto;" src="......
The <spanis superfluous if its only content is the <img>.

--
Berg
Oct 2 '08 #8
On 2008-10-02, Scott Bryce <sb****@scottbryce.comwrote:
CJM wrote:
>So I wrapped the the whole lot in a <spanand set it's margins to
auto and it's width to 470px, but that didn't work either.

Because a span is in-line and not a block. In-line elements cannot be
centered. Centering something that is in-line does not make sense.
It does make sense and you can do it-- by setting text-align on the
container.
If you want an image inside a div to be centered, but not the text
inside the div, you may need to place the image and text inside thier
own divs.
I think the easiest thing here, as has been suggested, is to get rid of
the span altogether and give the img display: block and auto left and
right margins.
Oct 2 '08 #9
Bergamot wrote:
Gus Richter wrote:
>CJM wrote:
>>I'd considered text-align, but I don't want the text part of it centered.

So I wrapped the the whole lot in a <spanand set it's margins to auto
and it's width to 470px, but that didn't work either.
<span class="banner"><img style="display:block;margin:auto;" src="......

The <spanis superfluous if its only content is the <img>.

Actually it isn't the only content, but also contains subsequent text,
however, pursuant to your comment I checked without the pertinent SPAN
tags and it is not necessary, at least for Firefox.

--
Gus
Oct 3 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Daniel Hansen | last post by:
I know this must seem totally basic and stupid, but I cannot find any reference that describes how to control the spacing between <p>...</p> and <div>...</div> blocks. When I implement these on a...
4
by: Hal Canary | last post by:
<div align="center"> does not seem to be identical to <div style="text-align:center">, as this example http://home.earthlink.net/~canaryh3/example.html points out. Yet the 'align' attribute...
3
by: CMAR | last post by:
To center my <div>, I am currently using something like <div id="navcontainer" align="center"> This centers fine, but is deprecated code. I have seen these two solutions recommended. 1) ...
3
by: Josef K. | last post by:
Asp.net generates the following html when producing RadioButton lists: <td><input id="RadioButtonList_3" type="radio" name="MyRadioButtonList" value="644"...
3
by: John Pote | last post by:
1. Horizontal centering a <divin browser window. The current trend seems to be to place page content in a fixed width area in the middle of the browser window. How is this achieved? If I use a...
7
by: simchajoy2000 | last post by:
Hi, I am just a javascript beginner so maybe this is a simple problem but I am trying to do some rollovers on images in a separate <div>. Here is the relevent piece of my code: <html>...
3
by: rsteph | last post by:
I'm using two divs to create a shadowed-box type effect. Within the top div I want to put an image. I can get the image to center right to left, but not top to bottom. I'm making a series of boxes,...
8
by: CJM | last post by:
I've inserted a new banner in an existing page and I want the banner image to be centered (horizontally) within its container. I'm not bothered whether the accompanying line of text is restricted...
4
by: harryusa | last post by:
I am trying to center 2 images concentrically which are z-indexed to lay on top of each other making an image with a border from another image that has a transparent center. I need the images to be...
8
prino
by: prino | last post by:
Hi all, I've written code (in REXX) that takes files in legacy languages (PL/I, COBOL, z/OS assembler, etc) and converts them into HTML in a format similar to what's displayed in the z/OS ISPF...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.