Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 绝对中心登录表单隐藏引导3_Html_Css_Login_Twitter Bootstrap 3_Centering - Fatal编程技术网

Html 绝对中心登录表单隐藏引导3

Html 绝对中心登录表单隐藏引导3,html,css,login,twitter-bootstrap-3,centering,Html,Css,Login,Twitter Bootstrap 3,Centering,我正在创建一个登录表单,并尝试将容器置于中心(水平和垂直) 它可以在桌面和大屏幕平板电脑上完美地工作——登录容器完美地位于中心,背景图像也能正常显示 但是在手机上,在纵向视图中背景图片不可见,在横向视图中,我无法向下滚动以填写登录表单,因为它被切断 我试过摆弄大小设置,但它仍然不想工作!下面是Bootply示例: 是的,固定位置的-50%上边距很奇怪 我会这样做的 div.container { height: 100px; margin: auto; position: absolute

我正在创建一个登录表单,并尝试将容器置于中心(水平和垂直)

它可以在桌面和大屏幕平板电脑上完美地工作——登录容器完美地位于中心,背景图像也能正常显示

但是在手机上,在纵向视图中背景图片不可见,在横向视图中,我无法向下滚动以填写登录表单,因为它被切断

我试过摆弄大小设置,但它仍然不想工作!下面是Bootply示例:


是的,固定位置的-50%上边距很奇怪

我会这样做的

div.container {
 height: 100px;
 margin: auto;
 position: absolute;
 width: 100px;
 top: 0; left: 0; bottom: 0; right: 0;
}