div水平居中 垂直居中_html/css_WEB-ITnose
程序员文章站
2024-01-26 10:54:58
...
水平居中
方案一:
使用margin:0 auto
test hello
方案二:
使用:
left:50%;top:50%;margin-left:-width/2;margin-top:-height/2;
定位一半后,再负边距左移和上移。达到水平和垂直方向居中效果
test hello
tip:若想垂直居中,margin:auto auto 这样简单的设置是不行的..
推荐阅读
-
div水平居中 垂直居中_html/css_WEB-ITnose
-
如何让textarea中的placeholder水平居中?_html/css_WEB-ITnose
-
div 居中_html/css_WEB-ITnose
-
微信小程序canvas实现水平、垂直居中效果
-
css — 定位、背景图、水平垂直居中
-
css 实现DIV水平垂直居中于屏幕_html/css_WEB-ITnose
-
怎么是浮动的div水平居中啊?_html/css_WEB-ITnose
-
为啥在IE6中,A标签中的文字不能垂直居中呢?_html/css_WEB-ITnose
-
基于jQuery实现的水平和垂直居中的div窗口_jquery
-
水平居中--行内元素、定宽块、不定宽块_html/css_WEB-ITnose