三行css代码实现垂直居中_html/css_WEB-ITnose
程序员文章站
2024-01-05 12:48:22
...
html结构为:
css代码为:
#div2{ height:300px;width:300px; border:1px red solid; text-align:center; margin:auto;}#div1{ height:50px;width:50px; position: relative; top: 50%; transform: translateY(-50%); border:1px red solid; margin:auto;}
其中最核心的css是这三行
position: relative; top: 50%; transform: translateY(-50%);
为了浏览器兼容性,需要在transform属性前添加浏览器前缀
推荐阅读
-
三行css代码实现垂直居中_html/css_WEB-ITnose
-
我这个li中的文字为什么在chrome下无法垂直居中?_html/css_WEB-ITnose
-
div+css 水平居中 实现方法_html/css_WEB-ITnose
-
css3实现的气泡效果代码实例_html/css_WEB-ITnose
-
CSS制作图片水平垂直居中_html/css_WEB-ITnose
-
css垂直居中的几种方式_html/css_WEB-ITnose
-
div中有一个marquee标签,marquee中有滚动显示的文字,如何让文字在div中垂直居中从右向左滚动显示?_html/css_WEB-ITnose
-
css5种实现垂直居中_html/css_WEB-ITnose
-
网页源代码中加什么实现该页面播放电视剧_html/css_WEB-ITnose
-
css中position:fixed实现div居中_html/css_WEB-ITnose