473,418 Members | 2,079 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,418 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 5799
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 the image. How can I cause the text of the...
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 an image & caption, but I can't find anything...
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 have it work with any sized image where I do not...
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 event. For example the caption would be "Add Year...
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 similar to an image. How to do it in a natural...
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 and I'm running out of ideas how to kill it - if...
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 giving me errors on IE ² is null or not an object ³...
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 captionElem = document.createElement("div");...
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 what I thought would be a somewhat simple...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
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...

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.