有没有什么好的办法防止图片撑破表格

table{table-layout:fixed;word-wrap:break-word;}div{word-wrap:break-word;}这个好不好但图片不能完成... table {
table-layout: fixed;
word-wrap:break-word;
}
div {
word-wrap:break-word;
} 这个好不好 但图片不能完成显示 还有一截显示不出来
我写的一个的程序是图片在一个指定的地方是可以设置宽高的 我想不管我怎么设置大小 在显示的地方都不撑披表格,而且能完整显示! 需要详细说明的 谢谢!
展开
 我来答
百度网友8a3d5ae
2008-04-20 · TA获得超过157个赞
知道小有建树答主
回答量:251
采纳率:0%
帮助的人:199万
展开全部
用这个脚本吧:
<script language=javascript>
function DrawImage(ImgD,width,height){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
if(image.width/image.height>=width/height){
if(image.width>width){
ImgD.width=width;
ImgD.height=(image.height*width)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}else{
if(image.height>height){
ImgD.height=height;
ImgD.width=(image.width*height)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
}
}
}
</script>

在图片处这样写
<img src="****" onload="DrawImage(this,表格宽度,表格高度)">

这样图片加载完后会按单元格的宽高度按比例缩放,并不会失真变型!
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式