position:fixed失效情况

Posted liaohongwei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了position:fixed失效情况相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
body{height:2000px;transform:translate(0);}
.fixed{position:fixed;width:100px;height:100px;background:red;top:300px;}
</style>
</head>

<body>
<div class="fixed">固定定位元素</div>
</body>
</html>

fixed定位的元素,如果父级有transform样式,值不为none,那么fixed定位就会失效。

解决方法:使用transform样式的元素,不要包含fixed定位的子元素。

以上是关于position:fixed失效情况的主要内容,如果未能解决你的问题,请参考以下文章

position:fixed 失效

ios下position:fixed失效的问题解决

解决position:fixed 固定定位失效问题

chrome 下 position:fixed失效(react)

项目中遇到的小问题,position:fixed无效的一种情况

关于position:fixed;的居中问题