472,328 Members | 1,420 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,328 software developers and data experts.

limit caption width to image width

Could someone show me how to limit caption width to image width dynamically
(image width is not known in advance) if that's possible? I was thinking of
using Javascript to get the image width which is then used for caption
width. Is there a better way? Thank you.
May 5 '07 #1
7 5711
Peter Parker wrote:
Could someone show me how to limit caption width to image width dynamically
(image width is not known in advance) if that's possible? I was thinking of
using Javascript to get the image width which is then used for caption
width. Is there a better way? Thank you.

I suppose this is too elementary. Contain the image and the caption in
a div with the same width as the image.

If the image with caption is to be floated, the div will take the width
of the image without it being actually declared on the div.

Other than that the width of the containing div must be specifically
declared.

If the image width is not known, presumably the image file is being
sourced from a remote location using some sort of server side scripting.
If so each of those scripting programs have a native function to get
the image width (and other size parameters) For example the php function
is getimagesize()

There is nothing wrong getting the image width client side with
javascript except where the client disables javascripting.

Louise
May 6 '07 #2
On 2007-05-06, boclair <bo*****@bigpond.net.auwrote:
Peter Parker wrote:
>Could someone show me how to limit caption width to image width dynamically
(image width is not known in advance) if that's possible? I was thinking of
using Javascript to get the image width which is then used for caption
width. Is there a better way? Thank you.

I suppose this is too elementary. Contain the image and the caption in
a div with the same width as the image.

If the image with caption is to be floated, the div will take the width
of the image without it being actually declared on the div.
Yes, although in that case the width it takes on will be the maximum of
the image's width and the width of the caption (generally with no line
breaks if enough space is available). This is probably a good thing
though.
May 6 '07 #3
Ben C wrote:
On 2007-05-06, boclair <bo*****@bigpond.net.auwrote:
>Peter Parker wrote:
>>Could someone show me how to limit caption width to image width dynamically
(image width is not known in advance) if that's possible? I was thinking of
using Javascript to get the image width which is then used for caption
width. Is there a better way? Thank you.

I suppose this is too elementary. Contain the image and the caption in
a div with the same width as the image.

If the image with caption is to be floated, the div will take the width
of the image without it being actually declared on the div.

Yes, although in that case the width it takes on will be the maximum of
the image's width and the width of the caption (generally with no line
breaks if enough space is available). This is probably a good thing
though.
Yes. However more often than not, the image will need to be bordered in
which case the image needs to display block declared. This is what I had
in mind.

Louise
May 6 '07 #4
Scripsit boclair:
>>I suppose this is too elementary. Contain the image and the
caption in a div with the same width as the image.

If the image with caption is to be floated, the div will take the
width of the image without it being actually declared on the div.

Yes, although in that case the width it takes on will be the maximum
of the image's width and the width of the caption (generally with no
line breaks if enough space is available). This is probably a good
thing though.

Yes. However more often than not, the image will need to be bordered
in which case the image needs to display block declared. This is what
I had in mind.
I don't quite follow. How would bordering affect this? Usually if you want a
border around an image, it's best to edit the image in an image processing
program, adding a border. But in any case, you can set a border for an image
in CSS (or HTML) without setting display: block.

And I think you would still have the problem that for

<div style="float: right">
<img ...><br>
caption text
</div>

the width would be determined by the caption text requirements, not the
image width, when the caption is longer than the image width.

So I think the only reasonable solution is to determine the width of the
image (via server scripting, if the page is more or less dynamic) and set
that width for the block.

I think I found a tricky way though...

<table width="1">
<tr><td><img ...></td></tr>
<tr><td>caption text</td></tr>
</table>

It's too tricky though, and there's no guarantee of success.

--
Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

May 6 '07 #5
On 2007-05-06, boclair <bo*****@bigpond.net.auwrote:
Ben C wrote:
>On 2007-05-06, boclair <bo*****@bigpond.net.auwrote:
>>Peter Parker wrote:
Could someone show me how to limit caption width to image width dynamically
(image width is not known in advance) if that's possible? I was thinking of
using Javascript to get the image width which is then used for caption
width. Is there a better way? Thank you.
I suppose this is too elementary. Contain the image and the caption in
a div with the same width as the image.

If the image with caption is to be floated, the div will take the width
of the image without it being actually declared on the div.

Yes, although in that case the width it takes on will be the maximum of
the image's width and the width of the caption (generally with no line
breaks if enough space is available). This is probably a good thing
though.

Yes. However more often than not, the image will need to be bordered in
which case the image needs to display block declared. This is what I had
in mind.
You get the same effect though.

This:

<float>
<img display: block>
<caption>
</float>

(in pseudo-CSSTML) will come out looking much the same as this:

<float>
<img display: inline>
<br>
<caption>
</float>

with the float taking on the width of the img or the caption whichever
is wider, assuming the available space is wider than either.
May 6 '07 #6
On 2007-05-06, Jukka K. Korpela <jk******@cs.tut.fiwrote:
Scripsit boclair:
>>>I suppose this is too elementary. Contain the image and the
caption in a div with the same width as the image.

If the image with caption is to be floated, the div will take the
width of the image without it being actually declared on the div.

Yes, although in that case the width it takes on will be the maximum
of the image's width and the width of the caption (generally with no
line breaks if enough space is available). This is probably a good
thing though.

Yes. However more often than not, the image will need to be bordered
in which case the image needs to display block declared. This is what
I had in mind.

I don't quite follow. How would bordering affect this? Usually if you want a
border around an image, it's best to edit the image in an image processing
program, adding a border. But in any case, you can set a border for an image
in CSS (or HTML) without setting display: block.

And I think you would still have the problem that for

<div style="float: right">
<img ...><br>
caption text
</div>

the width would be determined by the caption text requirements, not the
image width, when the caption is longer than the image width.
I suspect that's desirable though.
So I think the only reasonable solution is to determine the width of the
image (via server scripting, if the page is more or less dynamic) and set
that width for the block.

I think I found a tricky way though...

<table width="1">
<tr><td><img ...></td></tr>
<tr><td>caption text</td></tr>
</table>

It's too tricky though, and there's no guarantee of success.
Yes that will generally work, although if the longest word in the
caption is wider than the image, the table will get that width. So not
strictly what the OP seemed to be asking for, which is that width should
only be determined by the width of the image in all circumstance.

Another approach which does satisfy the literal requirement would be to
make the caption absolutely positioned (perhaps leaving top as auto to
rely on the browser's guess at its static position). That way it will be
taken out of the flow and play no part in the calculation of the float's
width. I didn't suggest this at first though because I think it is not
really a good thing to do in practice. The table cell (image gets min of
image width and width of longest word in caption) is always going to
look better.
May 6 '07 #7
Jukka K. Korpela wrote:
Scripsit boclair:
>>
Yes. However more often than not, the image will need to be bordered
in which case the image needs to display block declared. This is what
I had in mind.

I don't quite follow. How would bordering affect this? Usually if you
want a border around an image, it's best to edit the image in an image
processing program, adding a border. But in any case, you can set a
border for an image in CSS (or HTML) without setting display: block.
Again depending. I was thinking along these lines

If the image might be used on a number of pages, declaring a thin css
border provides differentiation between the image and the page
background (e.g. an image with sections shaded close to that of the page
background).

If a css border is used a "display block" declaration to prevent the
descender space being rendered between the image and the bottom border.

The con is css being disabled.

I think that that the adding of image borders server side is certainly
do-able, but manipulation of images on the server on call is expensive
compared to the use of css. But there is the con

Louise

May 7 '07 #8

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

Similar topics

8
by: Wally | last post by:
I would like to have an image with a caption displayed below it. The size of the image will vary. The caption should not extend beyond the width of...
6
by: Michael Rozdoba | last post by:
I've tried to apply something along the lines of http://www.spartanicus.utvinternet.ie/test/caption_sized_to_image.htm to a floated span containing...
2
by: aqualizard | last post by:
I have made and image with a caption using CSS, but I am hoping someone can show me how to do it better. By better I mean less HTML, and hopefully...
1
by: Colin Ward | last post by:
Hi. I have a popup modal form which gets part of its caption from code. The part of the caption which is determined from code is the name of the...
11
by: Tomek Toczyski | last post by:
What is the best way to attach a caption to an image in xhtml? I can attach a caption to a table by a "<caption>" tag but I would like to do sth...
5
by: VK | last post by:
On the demo at <http://www.geocities.com/schools_ring/tmp/demo01/index.xml> the table caption has 1px(?) indentation from the left in Firefox 1.5...
3
by: Jefferis NoSpamme | last post by:
Hello all, I'm trying to limit the file size to 1 meg on upload of image files and I am trying a script from javascript internet, but it is...
3
by: Roy Reed | last post by:
I found a script that converts image alt text to a caption which I've tried to modify for my needs: function addCaption(imgElem) { var...
11
by: Chris Beall | last post by:
See http://pages.prodigy.net/chris_beall/Demo/photo%20block%20experiments.html I've ended up with what seems like a rather complex structure for...
0
by: tammygombez | last post by:
Hey fellow JavaFX developers, I'm currently working on a project that involves using a ComboBox in JavaFX, and I've run into a bit of an issue....
0
by: tammygombez | last post by:
Hey everyone! I've been researching gaming laptops lately, and I must say, they can get pretty expensive. However, I've come across some great...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...

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.