【CSS】让图片在高宽固定的div里水平垂直都居中的三种办法
2021/12/20 23:24:42
本文主要是介绍【CSS】让图片在高宽固定的div里水平垂直都居中的三种办法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
效果:
实现一:绝对定位加精算
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>圆角Img示例</title> <style type="text/css"> .parentDiv{ width:200px; height:400px; background-color:yellow; position:relative; } .childImg{ position:absolute; height:128px; width:128px; left:36px;/* (200-128)/2 */ top:136px;/* (400-128)/2 */ } </style> </head> <body> <div class="parentDiv"> <img class="childImg" src="bggj-08.png" /> </div> </body> </html>
实现二:无须计算 自动偏移 比上面方法省事
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>图片垂直水平居中</title> <style type="text/css"> .parentDiv{ width:200px; height:400px; background-color:yellow; position:relative; } .childImg{ height:128px; width:128px; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); } </style> </head> <body> <div class="parentDiv"> <img class="childImg" src="bggj-08.png" /> </div> </body> </html>
方法三:柔性布局,但仅在Chrome中好用,Editplus3不支持,别的浏览器自己试。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>图片垂直水平居中</title> <style type="text/css"> .parentDiv{ width:200px; height:400px; background-color:yellow; display:flex; justify-content:center; align-items:center; } .childImg{ height:128px; width:128px; } </style> </head> <body> <div class="parentDiv"> <img class="childImg" src="bggj-08.png" /> </div> </body> </html>
END
这篇关于【CSS】让图片在高宽固定的div里水平垂直都居中的三种办法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-07uniapp动态设置不同的css有哪些方法?-icode9专业技术文章分享
- 2024-12-07UniApp 中,怎么通过 CSS 设置 view 组件的水平居中效果?-icode9专业技术文章分享
- 2024-12-06TailwindCSS开发入门教程
- 2024-12-06TailwindCSS项目实战:从入门到上手
- 2024-12-06TailwindCss项目实战:初学者指南
- 2024-12-05TailwindCSS入门指南:轻松上手实用教程
- 2024-12-05TailwindCss入门指南:轻松上手实用技巧
- 2024-12-04Tailwind.css入门:简洁高效的设计利器
- 2024-12-03Tailwind.css学习:从入门到实战的全面指南
- 2024-11-29Tailwind.css入门指南:快速上手实用教程