博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS-图片不变形设置
阅读量:6614 次
发布时间:2019-06-24

本文共 1933 字,大约阅读时间需要 6 分钟。

不管网页做的美还是丑,有一个问题始终是无法躲避的,就是有的时候会遇到图片变形的问题,之前遇到过这种问题解决过,不过还是整体的重新研究了一下图片,其中主要涉及到的知识点就是max-width和max-height的使用,原始图片为750*626:

其中图片设置图片变形的是只有第二张,这一张图片固定设置了图片的宽高,第一张图片图片是根据图片的虽然固定了宽高,但是比例和原始图片一致,所以看不出来变形,剩余的图片的基本上就是设置其中max-height和固定width,这样出现的效果没有变形,如果单纯的设置max-width,高度会根据图片图片比例变高。

如果想要图片不变形就是设置max-height或者max-width中的一个,另外固定width或者height中的一个,具体代码如何,有兴趣的可以自行测试:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang=
"en"
>
 
<head>
    
<meta charset=
"UTF-8"
>
    
<title>博客园-FlyElephant</title>
    
<style type=
"text/css"
>
    
div {
        
float: left;
    
}
     
    
.test1 img {
        
width: 187.5px;
        
height: 156.5px;
    
}
     
    
.test2 img {
        
width: 300px;
        
height: 100px;
    
}
     
    
.test3 img {
        
max-width: 300px;
        
max-height: 100px;
    
}
     
    
.test4 img {
        
max-width: 100%;
        
height: 200px;
    
}
     
    
.test5 {
        
width: 300px;
        
height: 200px;
    
}
     
    
.test5 img {
        
max-width: 100%;
        
max-height: 100%;
    
}
     
    
.test6 {
        
width: 300px;
        
height: 100px;
        
/*overflow: hidden;*/
    
}
     
    
.test6 img {
        
max-width: 300px;
        
max-height: 100px;
    
}
     
    
.test7 {
        
width: 300px;
        
height: 100px;
        
/*overflow: hidden;*/
    
}
     
    
.test7 img {
        
max-width: 300px;
    
}
    
</style>
</head>
 
<body>
    
<div 
class
=
"test1"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
    
<div 
class
=
"test2"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
    
<div 
class
=
"test3"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
    
<div 
class
=
"test4"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
    
<div 
class
=
"test5"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
    
<div 
class
=
"test6"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
    
<div 
class
=
"test7"
>
        
<img src=
"../../public/images/rv_mobile.jpg" 
/>
    
</div>
</body>
 
</html>

本文转自Fly_Elephant博客园博客,原文链接:http://www.cnblogs.com/xiaofeixiang/p/4984255.html,如需转载请自行联系原作者

你可能感兴趣的文章
React Native入门项目与解析
查看>>
云计算:大势所趋 你准备好了么?
查看>>
数据资产的运营商--天市大数据交易平台
查看>>
中小企业如何成功转型跨境电商
查看>>
java中文乱码解决之道(二)—–字符编码详解:基础知识 + ASCII + GB**
查看>>
《ANTLR 4权威指南》——2.5 语法分析树监听器和访问器
查看>>
02_JNI中Java代码调用C代码,Android中使用log库打印日志,javah命令的使用,Android.mk文件的编写,交叉编译...
查看>>
TIOBE 2016 年 5 月编程语言排行榜:Ruby 排名创历史新高
查看>>
这些国货,在阿里平台上被美国剁手党抢疯了
查看>>
《Excel 职场手册:260招菜鸟变达人》一第 2 招 常用快捷键Windows与Mac对照
查看>>
《Greenplum企业应用实战》一第1章 Greenplum简介1.1 Greenplum的起源和发展历程
查看>>
开源世界已成围城:成本让企业蜂拥而来,也让企业退缩转投
查看>>
嵌入式实时应用开发实战(原书第3版)》——3.3 保护模式架构
查看>>
《Python编程快速上手——让繁琐工作自动化》——1.4 在变量中保存值
查看>>
Git 两分钟指南
查看>>
想改进你的卷积神经网络?看看这14种设计模式!
查看>>
安装完最小化 RHEL/CentOS 7 后需要做的 30 件事情(六)
查看>>
[LeetCode]--100. Same Tree
查看>>
阿里蒋晓伟谈流计算和批处理引擎Blink,以及Flink和Spark的异同与优势
查看>>
快速掌握Redis——第二招:安装
查看>>