为了账号安全,请及时绑定邮箱和手机立即绑定

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰
直接把第九行的widtn改小点就好了,,其他人说的都是什么鬼。。造成无法显示原因就是宽度设置太大了,比如说宽度占了整个页面怎么居中都没用啊
.top{height:100px;background:#ccc;}

.main{height:1000px;width:980px;background:red;}

.left{ height:1000px;width:200px;background:blue;float:left}

.right{height:1000px;width:750px;background:green;float:right}

.foot{height:50px;background:yellow;clear:both;}
.top{height:60px;margin:0 auto;background-color:gray;}
.main{height:400px;margin:0 auto;background-color:red;}
.left{height: 400px; float: left;width: 200px; background-color:blue;}
.right{height:400px; margin-left: 210px; width:100%; position: absolute;background-color: green;}
被前面的人带着去听“啊”了,罪过
margin:0 310px 0 210px; 相对于左右俩边,中间是缩小了空间(减少内填充)
{height:100px;width:800px;background: #ccc;margin: 0 auto}
{height:500px;width: 800px;background: red;margin: 0 auto}
{height:500px;width:290px;background: blue;float:left}
{height:500px;width: 500px;background: greenyellow;float:right}
{height:50px;width:800px;background: orangered;margin: 0 auto}
有时候并不是设置错误了,而是由于右边显示部分的宽度太小了,中间自适应就会显示在左边列和右边列的下方,建议拉宽显示部分在查看显示结果。
正解是在第9行加入,width:50%; margin:0 auto; 意思是宽度为总宽度的50%,上下宽度为0,两边自己适应宽度,也就是居中,但是在这个上面为什么没效果,是因为前面width设置了宽度960!!!这框架没那么TM的宽!前面的兄台们别误人子弟- - 要有效果,就这只width:50%。这基础,伤心啊
style里头最后分号都丢了~
.top{height:50px;background:#ccc;margin:0 auto;}
.main{width:100%;height:500px;background:red;}
.left{width:40%;height:500px;background:blue;float:left;}
.right{width:58%;height:500px;background:green;float:right;}
.foot{width:100%;height:50px;background:orange;margin:0 auto;clear:both;}
完美!
px一定要写wdf
声音有点小

最新回答 / 慕saber
<!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-...
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消