View Single Post
Old 11-28-2022, 08:18 AM   #24
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,361
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Quote:
Originally Posted by repilo View Post
SVG has another drawback for me that I, in my ignorance, have not been able to solve. Imagine you have an image that is wider than high, and you want to display it alone on a page. The best method might be the SVG wrapper, because I think it's the only way to automatically centre the image vertically, as well as ensuring that the aspect ratio is respected.
But if the image has a caption, I have not been able to display it below and close to the picture.
This is what I do:
Code:
  <figure>
    <svg xmlns="http://www.w3.org/2000/svg" 
xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" 
width="100%" height="100%" viewBox="0 0 506 259" 
preserveAspectRatio="xMidYMid meet">
<image width="506" height="259" xlink:href="../Images/17.jpeg"/></svg>

    <figcaption><b>Fig. 17:</b> Paragraph with several lines of text.</figcaption>
  </figure>
If anyone knows how to solve it I would be very grateful.
I would recommend putting this question in it's own thread - it will get much more visibility that way. Also, there have been a few threads discussing this. Have you tried searching the forums??
Turtle91 is offline   Reply With Quote