gpt4 book ai didi

javascript - 图片在 iPad 上显示不正确

转载 作者:太空宇宙 更新时间:2023-11-04 13:39:25 30 4
gpt4 key购买 nike

我在 iPad 上尝试显示照片时仍然遇到问题,我找到了一种方法,但我不明白为什么我不能将它放在图像标签而不是 div 标签中的背景中.图像的原始位置是横向的,我需要以纵向显示任何图片,这就是问题所在,iPad 似乎不理解这一点并压扁了图片。

有没有办法在 div 中不将照片作为背景?下面是一个示例代码来说明这个问题。

<html>
<head>
<title>test</title>
</head>
<body>

<table border="1">
<tr><td align="center">Test Photo Display on iPad</td></tr>
<tr>
<td> <!-- Thats how I need to display the photo, but it gets squished-->
<img style="width:288px; height:384px;" src="photo.jpg">
</td>
</tr>
<tr>
<td> <!-- Here the picture gets displayed just fine since I am using it as a background -->
<div style="width:288px; height:384px;background: url('photo.jpg')no-repeat center;">
</div>
</td>
</tr>
</table>

</body>
</html>

最佳答案

我会先尝试去掉样式部分然后简单地做:

<img width=288px height=384px src="photo.jpg">

如果那不行,那么我感觉有更多我在您的问题中没有看到的代码会影响表格

关于javascript - 图片在 iPad 上显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22799566/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com