I have a div 200 x 200 px. I want to place a 50 x 50 px right in the middle of the div.
How can it be done?
I am able to get it centered horizontally by using text-align: center for the div. But vertical alignment is the issue..
|
|
|
Personally, I'd place it as the background image within the div, the CSS for that being:
(Assumes a div with id="demo" as you are already specifying height and width adding a background shouldn't be an issue) Let the browser take the strain... |
|||||||||||||||||||
|
|
another way is to create a
but you should always stick to just |
|||||||||||||||||||||
|
|
I would set your larger div with
This only works because you know the dimensions of both the image and the containing div. This will also let you have other items within the containing div... where solutions like using line-height will not. EDIT: Note... your margins are negative half of the size of the image. |
|||||
|
|
|
You could do some fancy tricks...
|
|||||||||
|
|
This is coming a bit late, but here's a solution I use to vertical align elements within a parent div. This is useful for when you know the size of the container div, but not that of the contained image. (this is frequently the case when working with lightboxes or image carousels). Here's the styling you should try:
|
|||
|
|
Vertical-align is one of the most misused css styles. It doesn't work how you might expect on elements that are not td's or css "display: table-cell". This is a very good post on the matter. http://phrogz.net/CSS/vertical-align/index.html The most common methods to acheive what you're looking for are:
|
|||
|
|
|
I've found that Valamas' and Lepu's answers above are the most straightforward answers that deal with images of unknown size, or of known size that you'd rather not hard-code into your CSS. I just have a few small tweaks: remove irrelevant styles, size it to 200px to match the question, and add max-height/max-width to handle images that may be too large.
|
|||
|
|
|
I have a gallery of images for which I don't know the exact heights or widths of images beforhand, I just know that they are smaller than the div in which they are going to be contained. By doing a combination of line-height settings on the container and using vertical-align:middle on the image element, I finally got it to work on FF 3.5, Safari 4.0 and IE7.0 using the following HTML markup and the following CSS. The HTML Markup
The CSS
|
|||
|
|
|
In CSS do it as:
|
|||||||||
|
|
This works for me :
|
||||
|
|
|
If you like a jQuery based solution: http://andreaslagerkvist.com/jquery/center/ |
|||
|
in the div
|
|||||
|
|
If you know the size of the parent div and the image, you can just use absolute positioning. |
|||
|
|
|
You can center an image horizontally and vertically with the code below (works in IE/FF). It will put the top edge of the image at exactly 50% of the browser height, and the margin-top(pulling half the height of the image up) will center it perfectly.
|
|||
|
|
|
thanks to everyone else for the clues. I used this method
|
|||
|
|
|
This is an old solution but browser market shares have advanced enough that you may be able to get by without the IE hack part of it if you are not concerned about degrading for IE7. This works when you know the dimensions of the outer container but may or may not know the dimensions of the inner image.
|
|||
|
|
|
The answer from bochgoch, using the div's background did it for me. You can simply solve SEO/reader friendly issues by placing a transparent image with alt gtag in the div and use the title tag in the link. |
|||
|
|
|
I just do this:
|
||||
|
|