Posted by Greg N. on 11/18/24 11:23
Jedi Fans wrote:
> Toby Inkster wrote:
>
>> Herbert Gerstinger wrote:
>>
>>> <div align=center>
>>> <img src="pic.jpg">
>>> <br>My very long text
>>> </div>
>>
>>
>> <div class=picturediv style=width:200px>
>> <img src=my_picture.jpeg alt='My Picture' width=200
>> height=160>
>> <p>This is a caption for the picture above.
>> </div>
>>
> in proper html this would be:
> <div class="picturediv" style="width:200px;">
> <img src="my_picture.jpeg" alt="My Picture" width="200" height="160">
> <p>This is a caption for the picture above.</p>
> </div>
>
I think the quotes are only needed around strings with non-alphanumeric
stuff. Iirc, this passes as strict:
> <div class=picturediv style="width:200px;">
> <img src="my_picture.jpeg" alt="My Picture" width=200 height=160>
> <p>This is a caption for the picture above.</p>
> </div>
--
Gregor's Motorradreisen:
http://hothaus.de/greg-tour/
[Back to original message]
|