CSS中的translate(-50%,-50%)实现水平垂直居中效果
程序员文章站
2022-06-16 13:23:58
translate(-50%,-50%) 属性:向上和左,移动自身长宽的 50%,使其居于中心位置。与使用margin实现居中不同的是,margin必须知道自身的宽高,而translate可以在不知道...
translate(-50%,-50%) 属性:
向上和左,移动自身长宽的 50%,使其居于中心位置。
与使用margin实现居中不同的是,margin必须知道自身的宽高,而translate可以在不知道宽高的情况下进行居中,tranlate函数中的百分比是相对于自身宽高的百分比
(使用top和left为50%时,以窗口左上角为原点)。
示例:
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>document</title> <style media="screen"> .container { position: relative; width: 50%; } .container img { width: 100%; display: block; height: auto; } .overlay { width: 100%; height: 100%; position: absolute; left: 0; top: 0; right: 0; bottom: 0; opacity: 0; transition: 0.5s ease; background: rgb(0, 0, 0); } .container:hover .overlay { opacity: 0.5; } .text { color: white; font-size: 20px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); } </style> </head> <body> <h2>淡入效果</h2> <div class="container"> <img src="./img/photo2.jpg" alt="avatar" class="image"> <div class="overlay"> <div class="text">hello world</div> </div> </div> </body> </html>
效果:
到此这篇关于css中的translate(-50%,-50%)实现水平垂直居中效果的文章就介绍到这了,更多相关css translate水平垂直居中内容请搜索以前的文章或继续浏览下面的相关文章,希望大家以后多多支持!
下一篇: Python中的五个神仙级函数一起来看看
推荐阅读
-
CSS中的translate(-50%,-50%)实现水平垂直居中效果
-
css实现的弹出窗口始终垂直水平居中效果_html/css_WEB-ITnose
-
css中垂直水平居中的实现方法总结(附代码)
-
使用Sass优雅并高效的实现CSS中的垂直水平居中(附带Flex布局,CSS3+SASS完美版)_html/css_WEB-ITnose
-
CSS(3)实现水平垂直居中效果的总结
-
使用Sass优雅并高效的实现CSS中的垂直水平居中(附带Flex布局,CSS3+SASS完美版)_html/css_WEB-ITnose
-
CSS(3)实现水平垂直居中效果的总结
-
css实现水平垂直居中的6中方法
-
web前端入门到实战:html中div使用CSS实现水平/垂直居中的多种方式
-
css中垂直水平居中的实现方法总结(附代码)