2-9编程练习问题
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
margin: 0;
padding:0;
}
.test{
width: 800px;
height: 100px;
background: red;
/*此处写代码*/
position:fixed;
margin:0 auto;
}
.out{
width: 100%;
height: 2000px;
background-color: #abcdef;
border:1px solid #333;
}
</style>
</head>
<body>
<div class="out">
<div class="test"></div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
*{
margin: 0;
padding:0;
}
.test{
width: 800px;
height: 100px;
background: red;
/*此处写代码*/
position:fixed;
left:50%;
right:400px;
}
.out{
width: 100%;
height: 2000px;
background-color: #abcdef;
border:1px solid #333;
}
</style>
</head>
<body>
<div>ruierwiopr[]</div>
<div class="out">
<div class="test"></div>
</div>
</body>
</html>
请问红色块为什么没居中?怎么解决这个问题呢?
正在回答 回答被采纳积分+1
您好,代码结构使用提供的结构即可。页面中水平居中显示,需要设置左边为50%,但设置之后会并没有居中,此时我们就需要将div块再向左移动div块一半的距离,因此是left:50%;margin-left:-400px;。祝学习愉快!
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> <style> *{ margin: 0; padding:0; } .test{ width: 800px; height: 100px; background: red; /*此处写代码*/ position:fixed; left:50%; margin-left:-400px; } .out{ width: 100%; height: 2000px; background-color: #abcdef; } </style> </head> <body> <div class="out"> <div class="test"></div> </div> </body> </html>
- 参与学习 人
- 提交作业 1088 份
- 解答问题 10205 个
如果你有Java语言基础,又想以后从事Java Web开发,那么本路径是你的不二选择!本路径从网页搭建开始入手,通过大量案例来学习Java Web基础。定能助你完成Java Web小白的蜕变!
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星