transform - css3 translate 的水平垂直居中问题求解
问题描述
transform: translate(50%, 50%)
为什么能够使一个元素水平垂直居中?
问题解答
回答1:这样写并不能使一个元素水平垂直居中,只能使元素在当前位置分别往x轴和y轴正向平移自身宽度的一半距离。
之前答过一个题,楼主可以看一下,也许有一些帮助。
translate
回答2:<!DOCTYPE html><html lang='zh-CN'><head> <!--author:Vace_Vlm(ocdo@qq.com),create:2016年5月21日 下午10:45--> <meta charset='UTF-8'> <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1' /> <title>title</title> <style>*{ padding: 0;margin: 0;}html,body{ width:100%; height:100%;}.box{ position:relative; top:50%; left:50%; width:200px; height:200px; background:red; transform:translate(-50%,-50%); transform-origin:50% 50%;} </style></head><body> <p class='box'></p></body></html>回答3:
这样写并不能直接居中,可以定位,然后left:50%; 这个时候定位原点是父层的定位元素,然后使用translateX(-50%);这时候是相对于这个元素本身向左移动一半,最终效果刚好是居中的。
相关文章:
1. index.php错误,求指点2. mysql怎么保存一件游戏装备,一般游戏开发是否用mysql3. html5 - ajax post请求后如何渲染到页面上4. html5 - 百度Ueditor代码高亮和代码段滚动条冲突是怎么回事?5. vim - win10无法打开markdown编辑器6. javascript - 可以DIY的页面是如何实现的?7. 如何提高python查询速度?8. showpassword里的this 是什么意思?代表哪个元素9. c++ - pycharm 4.5 的 python -> preferences 找不到10. 关于mysql unique的问题,如图所示