现在 有一个DIV有宽高的元素,想要在浏览器的中间,该如何处理?不使用transform
#father{
display: flex;
align-items: center;
justify-content: center;
}
或者:
#father {
display: -webkit-box;
-webkit-box-align: center;
-webkit-box-pack : center;
}
div{
position:fixed;
left: 50%;
top: 50%;
margin-left: -20%;
margin-top: -150px;
width: 40%;
height: 300px;
background: yellowgreen;
}
不定高度用JS或者CSS3.
补充下 @zzgzzg00 的回答:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
* {
margin: 0;
padding: 0;
}
.out {
width: 200px;
height: 200px;
background: green;
position: relative;
}
.in {
width: 40%;
height: 40%;
background: red;
position: absolute;
/*(100%-40%)/2 */
top: 30%;
left: 30%;
}
</style>
</head>
<body>
<div class="out">
<div class="in"></div>
</div>
</body>
</html>
8 回答4.8k 阅读✓ 已解决
6 回答3.5k 阅读✓ 已解决
5 回答2.9k 阅读✓ 已解决
5 回答6.4k 阅读✓ 已解决
4 回答2.3k 阅读✓ 已解决
5 回答1.3k 阅读✓ 已解决
4 回答2.8k 阅读✓ 已解决