HighDots Forums  

css centering image

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss css centering image in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
malcster2
 
Posts: n/a

Default css centering image - 08-27-2008 , 05:41 PM






i'm sure its very easy, but how does one center an image using css.

i've used text align :center, which i presume is for text
i've also set left and right margins for img in my div as auto, but it doesn't
work.

any ideas?


Reply With Quote
  #2  
Old   
Murray *ACE*
 
Posts: n/a

Default Re: css centering image - 08-27-2008 , 06:01 PM






Quote:
i've used text align :center, which i presume is for text
It's for any inline tag/content. So, all other things being equal it will
center an image, viz.

<p style="text-align:center;"><img src="foo.gif" />Both the text and the
image will be centered within this '&lt;p&gt;' tag</p>

Quote:
i've also set left and right margins for img in my div as auto, but it
doesn't
work.
Yeah - won't work for an inline tag. Show us the markup for your div,
please.

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"malcster2" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
i'm sure its very easy, but how does one center an image using css.

i've used text align :center, which i presume is for text
i've also set left and right margins for img in my div as auto, but it
doesn't
work.

any ideas?



Reply With Quote
  #3  
Old   
malcster2
 
Posts: n/a

Default Re: css centering image - 08-27-2008 , 06:38 PM



i've now used this, which has done the trick

.maincontent img
{
width:190px;
height:130px;
border:none;
display:block;
margin:0 auto;
}

i would of thought there would be a more straight forward method though,
something like image-align:center.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.