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

如何用CSS进行网页布局

江老实 Web前端工程师
难度初级
时长22分
学习人数
综合评分9.60
1991人评价 查看评价
9.8 内容实用
9.6 简洁易懂
9.4 逻辑清晰

最新回答 / 血海无涯
<style type="text/css">body{ margin:0; padding:0; font-size:30px; color:#fff}.top{width:600px; height:100px; margin:0 auto; background:#8f8f8f;}.main{width:600px; height:400px; margin:0 auto; background:red;}.left{width:200px; height:400px; float:le...
.top{width:100%;height:60px;background:#ccc}
.main{margin:0 auto;height:600px; background:red}
.left{width:20%; height:600px;margin:0px 81% 0px 0px; background:blue; position:absolute;}
.right{width:80%;margin:0px 0px 0px 21%; height:600px;background:#9C9; position:absolute;}
.top{width:100%;background:#ccc;}
.main{height:500px;width:100%;background:red;position:relative;}
.left{width:200px;height:100%;background:blue;position:absolute;}
.right{margin-left:210px;width:100%;position:absolute;height:100%;background:green;}
.foot{width:100%;background:orange;}
xxxxxxxxxx 昂~

已采纳回答 / 黑白灰菌
我所理解的是:绝对定位是会脱离文档流的,左侧div和右侧div设置了绝对定位直接无视文档流处在该处的位置。中间的div是普通流,它设置了一个margin-left和margin-right,就是视频中的margin:0 300px 0 200px,所以不会和左侧右侧重叠,我没有理解你说的文字内容没有被覆盖是什么意思,方便的话可以放出你的代码。
.top{height:100px;background: #ccc;}
.main{background: red;height:800px;position:relative;}
.left{position:absolute;width:200px;left:0;top:0; background:blue;height:800px;}
.right{background:green;height:800px;margin-left:210px;}
.foot{height:100px;background:orange;}
如果是上下两个方块之间添加空隙要怎么写margin?
-----------------
magin中的四个值分别控制上右下左 如果想要把元素放在中间的话应该是: margin(? auto ? auto); ?中填写自己需要的px值
margin:0px 310px 0 210px;我这么设置结果main还是水平居于下方,在自己的编辑器里把margin-top:-600,才最后实现这样的效果。我看别人的答案都是margin:0px 310px 0 210px;我就是没办法实现那样的效果。

---------------
margin:0px 310px 0 210px; 分别设置 上0px 右310px 下0px 左210px 发现问题没有 上和下都为0px的话.main就会在下方 把margin:0px 310px 0 210px;改为margin:0px 310px auto 210px;问题就解决了

已采纳回答 / Blizzard_lihe
<...图片...>仅供参考

最新回答 / 慕移动9181930
补充一点,这个是针对文本,修改选中文背景色和文本颜色。我自认js基础已经很好了,看着还是很窝心。
{width:800px;height:50px;margin:0 auto;background:gray}
{width:800px;height:400px;margin:0 auto;background:red}
{width:290px;height:400px;float:left;background:#0737F6}
{width:490px;height:400px;float:right;background:#64EBD4}
{width:800px;height:25px;background:#E78B42;clear:both;margin:0 auto;}

已采纳回答 / kiss仔仔
<!DOCTYPE html><html>    <head>        <title></title>    </head>    <body>    </body></html>用这种格式写
.top{height:80px;width:100%;background:gray;}
.main{height:500px;width:100%;background:red;position:relative;}
.left{height:500px;width:40%;position:absolute;background:blue;left:0;top:0;}
.right{height:500px;width:58%;background:#9c9;float:right;}
.foot{height:40px;width:100%;background:#f63;}
顶部、底部都好弄,这里只说下中间主体部分代码:
.main{width:100%; height:400px; background:red; position:relative;} 注(参照定位的元素必须加入“position:relative”,否则下面绝对定位会出问题。)
.left{width:200px; height:400px; background:blue; position:absolute; top:0; left:0;}
.right{margin-left:210px; width:100%; height:400px; background:green;}
.top{height:200px; background:grey;}
.main{height:600px;background:red;}
.left{height:600px;width:200px; background:blue; position:absolute;}
.right{height:600px;width:100%; background:green; margin:0 0 0 210px;position:absolute;}
.foot{height:100px; background:orange; clear:both;}
课程须知
1.你需要掌握html+css样式基础知识 2.有一定的前端实际开发经验
老师告诉你能学到什么?
1.掌握网页布局的相关知识 2.能对不同的网页进行布局结构划分 3.掌握固定宽度和自适应宽度的实现方法

微信扫码,参与3人拼团

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

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

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消